vote up 0 vote down star

Hi, I have a scrollViewWith size width=320x10 and height=460. I add 10 images of size width=320 and height=460 in scrollview with paging enabled. Now I can scroll the from 1st image to 10th image by scrolling.

when scrollView show, it is always showed from the 1st page. I want to show initially any random page of the scrollView, such that i can scroll previous page and next page from initially. How can i do that?

flag

0% accept rate

1 Answer

vote up 2 vote down
[scrollView setContentOffset: CGPointMake(0, y) animated: YES];

You should just need to set the y variable to the point where you would like to scroll to. For example:

[scrollView setContentOffset: CGPointMake(0, 920) animated: YES];

Should scroll to your 3rd image.

link|flag
Thanks for your answer. I have exactly done this yeterday and it works fine. – faisal Nov 9 at 2:52
1  
Great! If an answer does work for you, please consider accepting it - meta.stackoverflow.com/questions/5234/… – Chris Gummer Nov 9 at 5:00
Accept Chris' answer, reward him for helping you. meta.stackoverflow.com/questions/5234/… – JoePasq Nov 12 at 14:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.