Hi,
If you want to scroll a UIScrollView programatically as the result of any IBOutlet actions, use the following code in that particular action.
[yourScroller setContentOffset:CGPointMake(0,250) animated:YES];
This will scroll your scroller named ‘yourScroller’ automatically to the point specified!
🙂