The app delegate must implement the window property

新建Xcode项目报错:

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

只需要在 AppDelegate.h 文件中加入 window 属性即可。

@interface AppDelegate : UIResponder <UIApplicationDelegate>

@property (nonatomic, strong) UIWindow *window;

@end

上一篇:PYNQ开发板使用 Vivado PL 及PS调用


下一篇:VSPD虚拟串口来调试通信接口程序