[Application] The app delegate must implement the window property if it wants to use a main storyboard file.

2021. 3. 9. 13:57개발자료/iOS


반응형

Xcode12.2 에서 Run 실행시 검은색 화면만 나오는 문제 발생

콘솔로그에 아래 메시지가 노출

[Application] The app delegate must implement the window property if it wants to use a main storyboard file.

▦ 해결 방법

AppDelegate.h

@interface AppDelegate : UIResponder <UIApplicationDelegate>

@property (strong, nonatomic) UIWindow *window; // 추가

@end
반응형

'개발자료 > iOS' 카테고리의 다른 글

NSURL  (0) 2021.04.08
iPhone 생체인증(Biometrics) 지원여부 확인  (0) 2021.03.12
[Swift] String  (0) 2020.12.16
[WARNING] Null passed to a callee that requires a non-null argument  (0) 2020.12.03
Provision 확인 명령  (0) 2020.12.02