- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

 

 

    UIViewController * rootController =[[RootViewController allocinitWithNibName:@"RootViewController" bundle:nil];

 

  navigationController = [[UINavigationControlleralloc] initWithRootViewController:rootController];

 

    

 

self.window = [[[UIWindowalloc] initWithFrame:[[UIScreenmainScreen] bounds]] autorelease];

 

// Override point for customization after application launch.

 

self.window.backgroundColor = [UIColorwhiteColor];

 

    [self.windowaddSubview:[navigationControllerview]];

 

    [self.windowmakeKeyAndVisible];

 

returnYES;

 

}

'iPhone Dev' 카테고리의 다른 글

웹페이지 호출  (0) 2012.10.05
스크린샷  (0) 2012.10.05
블럭 안 실행 딜레이현상  (0) 2012.10.05
메모리와 스레드에 안전한 사용자정의 프로퍼티 메서드 만들기  (0) 2012.10.05
리다이렉트된 웹페이지  (0) 2012.10.05
Posted by 떡공이
,