Change 1:
1) put your subview in the visible scrollable area
2) change the frame of the new subtitle as you wish

3) change the contentSize property of the scrollview property with runtime attributes

Edit 2: u can create a new view with xib that contains all your routines, and then add that view to scrollview. Or you can use the Container View layout as follows:

ps: don't forget about contentSize (point 3 in my first edit), but if you use automatic linking, you need to set it programmatically as follows:
- (void)viewDidLayoutSubviews { [super viewDidLayoutSubviews]; _scrollView.contentSize = CGSizeMake(320, 250); }
source share