Skip to content

Instantly share code, notes, and snippets.

@jaykz52
Created November 26, 2012 00:32
Show Gist options
  • Save jaykz52/4146011 to your computer and use it in GitHub Desktop.
Save jaykz52/4146011 to your computer and use it in GitHub Desktop.
CKSideBarController didFinishLaunching
#import "CKSideBarController.h"
// ...
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
// Override point for customization after application launch.
self.barController = [[CKSideBarController alloc] init];
self.window.rootViewController = self.barController;
[self.window makeKeyAndVisible];
return YES;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment