Re: Scrollable GridView with fixed row and column

2013-10-16 Thread Viacheslav Karamov
Thanks everyone again! I have found nice working example here http://www.raywenderlich.com/4680/how-to-make-an-interface-with-horizontal-tables-like-the-pulse-news-app-part-1 16.10.13, 09:19, BareFeetWare пишет: On 16 Oct 2013, at 5:05 am, Vyacheslav Karamov wrote: I need to implement Gri

Re: Scrollable GridView with fixed row and column

2013-10-16 Thread Viacheslav Karamov
Tom, thanks a lot! 16.10.13, 09:19, BareFeetWare пишет: On 16 Oct 2013, at 5:05 am, Vyacheslav Karamov wrote: I need to implement Grid view for iOS 7 and newer. The users should have ability to scroll its contents both horizontally and vertically. They also should have ability to mark the ve

Re: Scrollable GridView with fixed row and column

2013-10-15 Thread BareFeetWare
On 16 Oct 2013, at 5:05 am, Vyacheslav Karamov wrote: > I need to implement Grid view for iOS 7 and newer. > The users should have ability to scroll its contents both horizontally and > vertically. > They also should have ability to mark the very first row and column as fixed > i.e. non-scrolla

Re: Scrollable GridView with fixed row and column

2013-10-15 Thread Quincey Morris
On Oct 15, 2013, at 11:47 , Vyacheslav Karamov wrote: > How to implement scrolling? It looks like the standard layout scrolls only in one direction, so you'd probably need to subclass UICollectionViewLayout to get a two-directional grid. (Or perhaps you can subclass UICollectionViewFlowLayout.

Re: Scrollable GridView with fixed row and column

2013-10-15 Thread Vyacheslav Karamov
Thanks Quincey! How to implement scrolling? 15.10.2013 21:43, Quincey Morris wrote: On Oct 15, 2013, at 11:05 , Vyacheslav Karamov > wrote: How to do this in a right way? I think UICollectionView may be what you want: https://developer.apple.com/library/ios/docu

Re: Scrollable GridView with fixed row and column

2013-10-15 Thread Quincey Morris
On Oct 15, 2013, at 11:05 , Vyacheslav Karamov wrote: > How to do this in a right way? I think UICollectionView may be what you want: https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/UIKitUICatalog/UICollectionView.html You can implement the special beha

Re: Scrollable GridView with fixed row and column

2013-10-15 Thread Vyacheslav Karamov
Thank you Kyle. But could you be more specific? 15.10.2013 21:18, Kyle Sluder wrote: On Oct 15, 2013, at 11:05 AM, Vyacheslav Karamov wrote: I need to implement Grid view for iOS 7 and newer. The users should have ability to scroll its contents both horizontally and vertically. They also shou

Re: Scrollable GridView with fixed row and column

2013-10-15 Thread Kyle Sluder
> On Oct 15, 2013, at 11:05 AM, Vyacheslav Karamov wrote: > > I need to implement Grid view for iOS 7 and newer. > The users should have ability to scroll its contents both horizontally and > vertically. > They also should have ability to mark the very first row and column as fixed > i.e. non-

Scrollable GridView with fixed row and column

2013-10-15 Thread Vyacheslav Karamov
I need to implement Grid view for iOS 7 and newer. The users should have ability to scroll its contents both horizontally and vertically. They also should have ability to mark the very first row and column as fixed i.e. non-scrollable. How to do this in a right way? Thanks, Vacheslav. __