- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Override point for customization after application launch.
splashLoadingController = [[SplashLoadingController alloc] initWithNibName:nil bundle:nil];
[self.window addSubview:splashLoadingController.view];
// 새로운 화면을 보여주기 위한 지연시간 설정
[NSTimer scheduledTimerWithTimeInterval:5.0f target:self selector:@selector(onSplashScreenExpired:) userInfo:nil repeats:NO];
[self.window makeKeyAndVisible];
return YES;
}
- (void)onSplashScreenExpired:(id)userInfo
{
[splashLoadingController.view removeFromSuperview];
[self.window makeKeyAndVisible];
}





당신의 의견을 작성해 주세요.