美文网首页
[AppDelegate window]: unrecogniz

[AppDelegate window]: unrecogniz

作者: 独角兽_d8a4 | 来源:发表于2022-09-16 17:23 被阅读0次

做了一个demo新建了一个项目  一直运行报错[AppDelegate window]: unrecognized selector sent to instance 0x283f6c470   并且卡一会儿就崩溃

最后发现xcode创建的时候没有给window属性

在AppDelegate.h添加window属性就可以了   如果还有问题就在AppDelegate.m里面创建一下window对象

#import

@interface AppDelegate : UIResponder <UIApplicationDelegate>

@property (strong, nonatomic) UIWindow * window;

@end

相关文章

网友评论

      本文标题:[AppDelegate window]: unrecogniz

      本文链接:https://www.haomeiwen.com/subject/dbwjortx.html