Try the search, it's linked to some great forums

Sunday, June 12, 2011

Setting up a UIScrollView

This creates a simple scrollview.  Define an IBOutlet in the .h file, and configure in Interface Builder the same size as it's container;

@synthesize stampsScrollView;

- (void)viewDidLoad {
    [stampsScrollView setScrollEnabled:YES];
    [stampsScrollView setContentSize:CGSizeMake(250.0, 800.0)];