[objective-c] The app delegate must implement the window property if it wants to use a main storyboard file. (solved)


忘れがちな話題
ios 10からサポートを開始したい場合は、問題が発生します.ios 13からは、基本的にwindow propertyが内蔵されています
[Application] The app delegate must implement the window property if it wants to use a main storyboard file.
AppDelegateはios 10をサポートします.hに加えればいい
同じ内容の資料がたくさんあるので漏らしたくないのですが、ちょっと忘れていたので書きました.
#import <UIKit/UIKit.h>

@interface AppDelegate : UIResponder <UIApplicationDelegate>

@property (nonatomic, strong) UIWindow * window;

@end