June 2011
Intermediate to advanced
590 pages
19h 31m
English
When you want to let the user scroll around your view, you typically make your view the subview of a UIScrollView, as shown in Figure 6.4.
Figure 6.4 Object diagram

In HypnosisterAppDelegate.m, put your view inside a scroll view and add that scroll view to the window:
- (BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
CGRect wholeWindow = [[self window] bounds];
UIScrollView *scrollView ...Read now
Unlock full access