I’m new to auto scroll functionality. I have a very lengthy .png file. what I want to do is, when I click a button I want to automatically start scrolling of that image. I had gone through scrollView sample code in sdk. but I get confused. Please any one help me
Thanks in advance
Praveena
Scrolling is achieved by setting the content offset.
Imagine a view controller constructed something like this (e.g. in -viewDidLoad):
To make it scroll, just do this:
To have the scrolling to be continuous, you need to set up a timer that updates the content offset.