2.2 Mit dem Split-View-Controller interagieren

Warum hat sich nichts geändert? Sie werden die Antwort in der Methode application:didFinishLaunchingWithOptions:[11] finden.

 SplitVC/DailyShoot3/Classes/DailyShootAppDelegate.m
-(BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    [self.window addSubview:self.navigationController.view];
    [self.window makeKeyAndVisible];
    return YES;
}

Obwohl wir jetzt im IB einen Split-View eingerichtet haben, fügen wir immer noch den View des Navigations-Controllers als unseren Haupt-View ein. Das reparieren wir, indem wir ein Outlet für den Split-View-Controller hinzufügen, den wir splitVC nennen werden. Fügen Sie dem App-Delegate dieses Outlet hinzu. Ab hier ...

Get iPad-Programmierung now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.