티스토리 뷰

자주 까먹는 이슈

ios10 부터 지원하려고 하면 겪는 문제. ios13부터는 window 프로퍼티가 기본 내장되있는듯 하다

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

ios10을 지원하려면 AppDelegate.h 에 추가해주면 된다

같은 내용의 자료가 많아서 포스팅하지 않으려 했으나 은근히 까먹기 때문에 작성함.

#import <UIKit/UIKit.h>

@interface AppDelegate : UIResponder <UIApplicationDelegate>

@property (nonatomic, strong) UIWindow * window;

@end
댓글