GMGridView, 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 to play with the view and toggle from the cellview to a fullsize display.
Questions tagged [gmgridview]
25 questions
6
votes
1 answer
GMGridView selection is overriding
I got weird problem, while using GMGridView. Actually i'm using GMGridview to show the restaurant tables. If i selected Table1(that means first cell), It should change to redColor(that means it is occupied table). I did this, But my problem is when…

Joker
- 734
- 3
- 11
- 27
5
votes
3 answers
how to set anchor point of view for pinch zoom (GMGridView)
I am doing research on "Solar" app for learning purpose. I noticed a tile can be zoomed using pinch gesture. The way it was zooming clearly showed that had set anchor point of uiview.
you may see its video here …

HarshIT
- 4,583
- 2
- 30
- 60
3
votes
2 answers
how to aovoid situation in which gridView is covering my uilabel now:iphone
What I am having right now is
View :
1.UILabel : show a text
2.A GMGridView : show a grid of views
The codes are
- (void)viewDidLoad
{
[super viewDidLoad];
gridViewHolder.itemSpacing = SPACING;
…

tranvutuan
- 6,089
- 8
- 47
- 83
2
votes
3 answers
iOS GMGridView how to reuse GMGridViewCell cells?
I noticed that every time my GMGridView needs to refresh, it re-creates all cells, which takes a long time.
Is there some way to assign a reuse identifier to GMGridViewCell or somehow ensure they are reusable?
Here's the code that I have that…

Alex Stone
- 46,408
- 55
- 231
- 407
2
votes
3 answers
How to find location of the view being tap (using the GMGridView library)
I've implemented the GMGridview in my program. I found this code on github. Click here
My program is a grid view of my business' products. Each product is a custom UIButton inside a scroll view. Im looking for ways to get the location of each button…

angelmacaraig
- 67
- 6
2
votes
1 answer
GMGridView appears offscreen, but overlaps with onscreen view
I am using a custom controller for transitions (could not use navigation controller due to inherent cycles in project, which would allow the navigation controllers stack to grow unbounded [which I assume would cause memory issues]). I am emulating a…

Pedro Cattori
- 2,735
- 1
- 25
- 43
2
votes
0 answers
How to combine moving cell + delete option in GMGridView for iphone app
I want to combine moving cells & option to delete particular cell like iOS springboard in GMGridView. I can't understand how to combine those functionality so that user have option to move the cell across & if user wants to delete cell he has cross…

iOSAppDev
- 2,755
- 4
- 39
- 77
2
votes
1 answer
Incorrect conversion value for CGSize/SizeF binding
I'm working on MonoTouch binding project to integrate GMGridView into my application. I was able to successfully load the empty Grid view but was not able to load grid items. After spending hours on MonoTouch & Objective C code, it turned out that…

Aarpy
- 121
- 2
- 7
1
vote
1 answer
GMGridView cells scroll upto the statusbar in iOS 7
I have a UIViewController that I am setting as the rootviewcontroller of a UINavigationController. Then in the viewcontroller I create a gmgridview like so:
NSInteger spacing = 15;
GMGridView *gmGridView = [[GMGridView alloc]…

Arsalan Habib
- 1,395
- 14
- 20
1
vote
1 answer
GMGridView ios 5.1 and lower issue
First of all this question is oriented on those who practiced GMGridView with iOS 5.0+
I have GridView's cell as a separate screen with some components (buttons, tableView with custom cells) on it.
The problem is that in ios 6+ I can get access to…

Aleksey Potapov
- 3,683
- 5
- 42
- 65
1
vote
0 answers
Xcode Archiving with Subproject GMGridView
I have included the GMGridView project on my project. everything runs fine when I test it on simulator, but when I try to archive it. i get the following error:
no such file or directory:…

BlackCat
- 33
- 5
1
vote
1 answer
Cell highlighting for the GMGridView
I'm using the GMGridView with a subclassed UIView as the contentView of the cells. These are assigned in the
- (GMGridViewCell *)GMGridView:(GMGridView *)gridView cellForItemAtIndex:(NSInteger)index
Now I'd like the cells to have a highlight,…

taymless
- 779
- 2
- 9
- 24
1
vote
1 answer
Approach of how to put a GMGridView inside a UITableViewCell?
i don't know how should i get a GMGridView (horizontal only) into a UITableViewCell, i tried adding as a subview but It gets messed up... any ideas?
the code is in fact simple...
HorizontalGridViewController *pics = [[HorizontalGridViewController…

NSCabezon
- 59
- 5
1
vote
1 answer
Crash when tapping cell in GMGridView
i'm trying to use the GMGridView library, everything works but when i tap in a cell the app crash in a method of the library with this error: [UILongPressGestureRecognizer hasRecognizedValidGesture]: unrecognized selector sent to instance...
I've…

user1575803
- 57
- 6
0
votes
1 answer
Images in GMGridViewCells (using xib) are swapping while scrolling
I have implemented GmGridView in my project. but images are swapping in gridViewCells. the answer in this SO POST didn't helped. Code in cellForItemAtIndex
CGSize size = [self GMGridView:gridView sizeForItemsInInterfaceOrientation:[[UIApplication…

Rugmangathan
- 3,186
- 6
- 33
- 44