Please lead me in the right direction.
I need to provide user with small text centered on the iPhone screen. User can make quick scroll left or right in order to get the next or previous text. There can be hundreds of such text pieces. The process itself is similar to Photo application sidescrolling but much simple, no zoom.
As far as I can understand I need to use UIScrollView class, then call hundreds of addSubviews?
Is it the optimal way or I should always keep 3 subviews and replace them on the fly?
What kind of tricks should be used to achieve the “scroll and center” effect?
Thanks
You could use a
UIScrollViewwithpagingEnabled = YESfor the “scroll and center” effect, I guess.Then only add the subviews that you’re actually displaying, otherwise you’ll run out of memory very quickly.
In the
UIScrollViewDelegate, in-scrollViewDidScroll:you can get the currentcontentOffsetand determine which subviews you need to add and which ones can be removed.