GMGridView icon indicating copy to clipboard operation
GMGridView copied to clipboard

A performant Grid-View for iOS (iPhone/iPad) that allows sorting of views with gestures (the user can move the items with his finger to sort them) and pinching/rotating/panning gestures allow the user...

Results 104 GMGridView issues
Sort by recently updated
recently updated
newest added

This would be a nice add. Thinking of adding it in, but if someone beats me to it :)

I am retrieving images from Document Directory and showing them in GridCell but it is causing lagging as i scroll down/up.

Sorry very new into iOS 5. I can't achive full size image apear GMGridViewCell *cell = [gridView dequeueReusableCell]; ``` if (!cell) { //Init the cell cell = [[GMGridViewCell alloc] init];...

Hi, First, deep appreciation for sharing this awesome work! It is helping me tremendously in my code. I found an issue I hope you can help. What I found was...

I am trying to get a vertical scrolling single column. When I scroll the items jump outside of the scroll view instead of disappearing. What am I doing wrong? Video:...

First of all, this is a bug in iOS before version 6.0, not in GMGridView. If you enable Zombie Objects in your project the grid view will leak cells. This...

Would it be possible to implement an iPhoto style moving of cells (you can see this in iPhoto Events). This is similar to the GMGridViewStylePush style except it doesn't re-order...

Im kinda new to GridView, how to load images from `NSDocumentDirectory`, here is how I save them: ``` NSArray *paths = NSSearchPathForDirectoriesInDomains( NSDocumentDirectory, NSUserDomainMask ,YES ); NSString *documentsDir = [paths...

I am trying to add a custom view to cell.contentView. But here is the problem. The cells do not draw unless I scroll down in the grid. Here are my...

Hey first of all thanks for such a nice demo of gridview it solved almost all my problems of showing UIImageview in grid and reordering them. Your demo works smoothly...