본문 바로가기

Mobile/iOS

[iOS] The app delegate must implement the window property if it wants to use a main storyboard file. 오류 관련

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

오류의 경우


swift


AppDelegate Class 에 하기 값 추가가 필요합니다.

var window: UIWindow?


Objective-C


AppDelegate.h file 에 하기 값 추가가 필요합니다.

@property (strong, nonatomic) UIWindow *window;