[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が内蔵されています
同じ内容の資料がたくさんあるので漏らしたくないのですが、ちょっと忘れていたので書きました.
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
Reference
この問題について([objective-c] The app delegate must implement the window property if it wants to use a main storyboard file. (solved)), 我々は、より多くの情報をここで見つけました https://velog.io/@james-chun-dev/objective-c-The-app-delegate-must-implement-the-window-property-if-it-wants-to-use-a-main-storyboard-file.-solvedテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol