jack2 codebase
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
646B

  1. //
  2. // iPhoneNetAppDelegate.m
  3. // iPhoneNet
  4. //
  5. // Created by Stéphane LETZ on 16/02/09.
  6. // Copyright Grame 2009. All rights reserved.
  7. //
  8. #import "iPhoneNetAppDelegate.h"
  9. @implementation iPhoneNetAppDelegate
  10. @synthesize window, navigationController;
  11. - (void)applicationDidFinishLaunching:(UIApplication *)application {
  12. // Override point for customization after application launch
  13. // add the navigation controller's view to the window
  14. [window addSubview: navigationController.view];
  15. [window makeKeyAndVisible];
  16. }
  17. - (void)dealloc {
  18. [navigationController release];
  19. [window release];
  20. [super dealloc];
  21. }
  22. @end