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

Move routine out of `if` scope: ``` objc for (int i = _numberTotalItems - 1; i >= index; i--) { UIView *oldView = [self cellForItemAtIndex:i]; oldView.tag = oldView.tag + 1;...

Great project,for sure. But I have an issue when adding custom view on the GMGridViewCell object and try to perform an animation. I add one rotation animation on my image...

Hello All! I added GMGridView as git submodule to main project and dropped GMGridView project to xcode. Added GMGridView as dependency and added libGridView.a to Liink with library. When I...

The image link in README.md is broken.

Exporting the "UIGestureRecognizer+GMGridViewAdditions.h" and "UIView+GMGridViewAdditions.h" file so that user can use the static lib and the headers instead of the whole project. Another delegate method added so that user could...

Can anyone help with creating complex cells with GMGridView with various elements such as UIViews, UIimageViews, UIButtons etc. These elements may have unique graphics for each cell. I'd like to...

Can I use Storyboard or Interface Builder to create the cells? Or do I have to create them manually by hand code? Thanks.

i am using button in GMgridviewCell like order cart button but when ever i am clicking that button first didTapOnItemAtIndex delegate method is called after that only button action is...

Added some code for this. It's a bit crufty, but I wanted some feedback. Notes: - Not sure I manage the inFullScreen flag correctly in the cell, and I'm not...