User Tools

Site Tools


Sidebar

Programming Reference/Librarys

Question & Answer

Q&A is closed







objective-c:examples:rootviewcontroller

RootViewController

Add a UIViewController named RootViewController to your empty project

Add a RootViewController to your project

First step import the RootViewController.h in your AppDelegate

#import "RootViewController.h"

Second step initialize and add the RootViewController to window

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    // Override point for customization after application launch.
 
    /* initialize RootViewController */
    RootViewController *rootVC = [[RootViewController alloc] initWithNibName:@"RootViewController" bundle:nil];
 
    /* Add RootViewController */
    self.window.rootViewController = rootVC;
 
    self.window.backgroundColor = [UIColor whiteColor];
    [self.window makeKeyAndVisible];
    return YES;
}

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War
objective-c/examples/rootviewcontroller.txt · Last modified: 2024/02/16 01:06 (external edit)

Impressum Datenschutz