gmoledina / 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.
MIT License
2.3k stars 512 forks source link

iOS 7 Horizontal strategy content size #191

Open wsnnn opened 11 years ago

wsnnn commented 11 years ago

In iOS 7 in a horizontal strategy appears extra space above and below. Instead of a horizontal scroll bar appears also the vertical scroll bar, and the items are hidden behind the navigation bar. How to solve it? Content size does not help.

forsan commented 11 years ago

same here any help!!

wsnnn commented 11 years ago

I did the following (works only on iOS 7):

[self setEdgesForExtendedLayout:UIRectEdgeNone];

Or you can set the background on the navigationBar and tabBar, the effect will be the same.