Skip to content

Instantly share code, notes, and snippets.

@odrobnik
Created March 18, 2015 13:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save odrobnik/f6759d3cabe67d947ffb to your computer and use it in GitHub Desktop.
Save odrobnik/f6759d3cabe67d947ffb to your computer and use it in GitHub Desktop.
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
UINavigationController *nav = (UINavigationController *)self.window.rootViewController;
NotesListViewController *list = (NotesListViewController *)[nav topViewController];
list.notesManager = [NotesManager new];
// Override point for customization after application launch.
return YES;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment