[AppDelegate window]: unrecogniz

2022-09-16  本文已影响0人  独角兽_d8a4

做了一个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

上一篇下一篇

猜你喜欢

热点阅读