Reputation: 1213
i wanted to know what's the best approach to develop such an "epg matrix" as the ONAIR iPad app is showing? I think it will be a tableview with scrollable cells or something like that?
Has anyone an idea how to get started or can provide some examples/tutorials/sample code on this?
Would be very helpful.
Thanks.
Upvotes: 1
Views: 1142
Reputation: 26
in fact i think the onair App uses three Scrollviews: - a small one at the top thats showing the time (scrollable left/right) - the one on the left side showing the tv-stations (scrollable up/down) - and the big one on which the programs are presented (scrollable in every direction)
And you have to link the scrolling of the uiscrollviews in their delegates (which should be the same (super-)viewcontroller) uiscrollview:didscroll method.
Hope this helps.
Upvotes: 1