Search code examples
iosuiscrollviewinterface-builder

Cannot Scroll UIScrollView


I've got a UIScrollView in IB linked to the delegate and with the proper referencing outlet, declared in my header:

IBOutlet UIScrollView *scrollView;

And called in my viewDidLoad:

- (void)viewDidLoad
{
    [super viewDidLoad];
    [scrollView setScrollEnabled:YES];
    [scrollView setContentSize:CGSizeMake(320, 500)];
}

It has the correct size and width in IB, and the default values in the Attributes inspector.

Why can't I scroll it?

EDIT: Also, layer wise there is no other view conflicting for a z-index.


Solution

  • Is the content size larger than the scrollview's frame? That's the only way it'll scroll.