I just can\'t get my scroll view to actually scroll.. Everything displays fine except it just won\'t scroll..... Here\'s my code:
- (void)viewDidLoad { [supe
The contentSize must be larger than the scrollview's frame for there to be anything to scroll. :)
contentSize
In this case, they're both (320, 600) so change your scrollView's init to
(320, 600)
UIScrollView *scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];