인디노트

iOS 앱 개발시 블랙 화면만 표시되는 경우 본문

소스 팁/Objective C, Swift, iOS, macOS

iOS 앱 개발시 블랙 화면만 표시되는 경우

인디개발자 2021. 2. 19. 10:29

아마도 다음과 같은 콘솔 출력도 있을 것이다.

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

이것은 예전에는 없는 현상인데 iOS 13 부터 UISceneDelegate 를 사용하는데 xcode 에서 해당 앱을 iOS 12 이하로 재 설정하는 경우 발생된는것 같다.

다음과 같이 AppDelegate.h 에 한줄을 추가하면 해결 된다.

@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@end

@property (strong, nonatomic) UIWindow *window;

반응형
Comments