GMGridView
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...
It would be REALLY nice if you have the option to set the scrolling to a RTL manner instead of the current LTR. What do you think?
NSInteger positionToLoad; ``` GMGridViewCell *cell = [self newItemSubViewForPosition:positionToLoad]; [self addSubview:cell]; ``` ===========Whether should change to this?============== NSInteger positionToLoad = 0; ``` GMGridViewCell *cell = [self newItemSubViewForPosition:positionToLoad < 0 ? 0...
It would be convenient for a public method on gridView that returns the currently visible cells. Right now I have resorted to making the itemSubviews method public instead of private....
gridview.edit=yes,how to use sortingdelegate?
I have a Grid View with possibly upto 1000 Cells. Each Cell displays an Image that gets downloaded asynchronously if it has not already been downloaded from the server. Now,...
Previously, I was using if (cell == nil) { ``` cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier]; } ``` But now that I'm using GMGrid, there doesn't seem to be an...
I'm not sure why GMGridViewActionDelegate isn't getting called in my code? I am implementing / setting the actionDelegate property, seems like the gesture isn't getting passed through (I have even...
Has anyone extended this to have multiple sections and section titles (like the iPad iTunes and AppStore apps)?
Hey, I have been using GMGridView recently and have noticed that from time to time a cell with an image will get stuck on the screen while dragging the cell...
I was trying to use GM grid view with a single row with only 2 elements. (1/4 of the screen is occupied and 3/4 of the gridview is black space)....