忍者ブログ
Welcome to my site. Please sitting on the couch, relax and see the web site.

[PR]

×

[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。

PlainNoteAppDelegate.m

//
// PlainNoteAppDelegate.m
// PlainNote
//
//


#import "PlainNoteAppDelegate.h"
#import "RootViewController.h"


@implementation PlainNoteAppDelegate

@synthesize window;
@synthesize navigationController;


#pragma mark -
#pragma mark Application lifecycle

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after app launch

[window addSubview:[navigationController view]];
[window makeKeyAndVisible];
return YES;
}


- (void)applicationWillTerminate:(UIApplication *)application {
// Save data if appropriate
}


#pragma mark -
#pragma mark Memory management

- (void)dealloc {
[navigationController release];
[window release];
[super dealloc];
}


@end

拍手[0回]

PR