AQGridView icon indicating copy to clipboard operation
AQGridView copied to clipboard

A grid view for iPhone/iPad, designed to look similar to NSCollectionView.

Results 99 AQGridView issues
Sort by recently updated
recently updated
newest added

I realize the future use here is to add a UIGestureRecognizer (and I think that too is very beneficial) but I added some changes that enable multi finger touch behavior...

The setFrame method of AQGridView used to only call handleGridViewBoundsChanged if the bounds width actually changes. (This to prevent unnecessary work if setFrame is called again with same bounds I...

Next Pull or Bounce Batch

On very large tables with different layouts in portrait/landscape like 3x4/4x3 the total grid height can be very different so its necessary to change the contentOffset proportionally. This keeps the...

1) selection change can be refused in method by returning value NSNotFound. 2) deselection of previous selected item is made after calling willSelectItemAtIndex method, so it is possible to use...

Was having trouble with the image demo code when I used images that were smaller than the size of the cells. Adding this line fixed it for me.

To reproduce set line 240 of ImageDemoViewController to ``` plainCell.selectionStyle = AQGridViewCellSelectionStyleNone; ``` Then rotate from landscape to portrait orientation. I have found a fix that seems to work just...

Added changes to support horizontal layout.

Next Pull or Bounce Batch

Added 2 missing dealloc calls to suppress warnings. The missing deallocs were causing a `Method possibly missing a [super dealloc] call` warning to be displayed in Xcode 4.5.

What do you think? It's basically s/retain/strong and s/__block/__weak