issues
search
Glsme
/
iOS_Interview_Question_Answer
🧙 재르시 면접질문에 대한 답변 정리 Repository입니다.
3
stars
0
forks
source link
앱이 시작할 때 main.c 에 있는 UIApplicationMain 함수에 의해서 생성되는 객체는 무엇인가?
#16
Open
Glsme
opened
1 year ago
Glsme
commented
1 year ago
UIApplication
Singleton으로 생성된다.
info.plist로부터 앱 구성에 필요한 정보를 로드한다.
Event loop 및 초기 설정을 진행한다.
실행 완료 직전에 AppDelegate 내 application(_didFinishLaunchingWithOptions:) 메서드가 호출된다.
UIApplication