I am trying to add labels to my scroll view. I have successfully made the scrollview for both iPhone and iPad size using storyboards on Xcode 5 for iOS 7, but when I add a label it no longer scrolls.
How can I fix this?
Thanks
Edit:
ViewController.h:
IBOutlet UIScrollView *scrolling;
IBOutlet UIScrollView *scrollingIpad;
ViewConroller.m
[scrolling setScrollEnabled:YES];
[scrollingIpad setScrollEnabled:YES];
[scrolling setContentSize:CGSizeMake(320, 600)];
[scrollingIpad setContentSize:CGSizeMake(768, 2000)];