Michaël Blin

Results 6 comments of Michaël Blin

A dirty fix would be to handle device rotation notifications and keyboard notifications. I don't know if it covers all cases, but for me it works for rotation with and...

I reached to get them like this : Add `@property (nonatomic) int index;` to GMGridViewCell.h and `@synthesize index;` to his .m file: Then in `-(GMGridViewCell *)GMGridView:(GMGridView *)gridView cellForItemAtIndex:(NSInteger)index` add `cell.index=index;`...

Sorry I haven't noticed that cause I'm reloading data on rotation

I can't reproduce your problem. I'm using this method in order to use apple's lazy technique for cell' images. I always get the same association image/cell, rotation doesn't alter anything.

I reached to get visible cells : https://github.com/gmoledina/GMGridView/issues/43?source=cc So now, thanks to Apple LazyTableImages technique (https://developer.apple.com/library/ios/samplecode/LazyTableImages/Introduction/Intro.html) you can download asynchronously your images.

After all, I realized that I had certain specific needs that would have required too much customization. I decided to make my own controller. It's an interpretation of `SpecialTabBarController`. In...