SBAppDelegate.m 756 B

1234567891011121314151617181920212223242526
  1. //
  2. // SBAppDelegate.m
  3. // JDStatusBarNotificationExample
  4. //
  5. // Created by Markus on 29.10.13.
  6. // Copyright (c) 2013 Markus. All rights reserved.
  7. //
  8. #import "SBExampleViewController.h"
  9. #import "SBAppDelegate.h"
  10. @implementation SBAppDelegate
  11. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
  12. {
  13. self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
  14. self.window.backgroundColor = [UIColor whiteColor];
  15. self.window.rootViewController = [[UINavigationController alloc] initWithRootViewController:
  16. [[SBExampleViewController alloc] initWithStyle:UITableViewStyleGrouped]];
  17. [self.window makeKeyAndVisible];
  18. return YES;
  19. }
  20. @end