Notice
Recent Posts
Recent Comments
Link
투케이2K
89. (Objective-C/objc) 스레드 슬립 NSThread sleepForTimeInterval 사용해 앱 실행 로딩 화면 연장 처리 실시 본문
Objective-C
89. (Objective-C/objc) 스레드 슬립 NSThread sleepForTimeInterval 사용해 앱 실행 로딩 화면 연장 처리 실시
투케이2K 2022. 9. 22. 11:57[개발 환경 설정]
개발 툴 : XCODE
개발 언어 : OBJECTIVE-C
[소스 코드]
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
printf("\n");
printf("=============================== \n");
printf("[AppDelegate >> didFinishLaunchingWithOptions] \n");
printf("[설명 :: 앱 프로세스 완료 및 앱 실행 실시] \n");
printf("=============================== \n");
printf("\n");
// -----------------------------------------
// [NSThread 사용해 앱 실행 연장 처리 실시]
[NSThread sleepForTimeInterval:2.0f];
// -----------------------------------------
// -----------------------------------------
return YES;
// -----------------------------------------
}
반응형
'Objective-C' 카테고리의 다른 글
Comments