[AppDelegate window]: unrecognized selector sent to instance 0x283f6c470

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

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

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

#import

@interface AppDelegate : UIResponder

@property (strong, nonatomic) UIWindow * window;

@end

你可能感兴趣的:([AppDelegate window]: unrecognized selector sent to instance 0x283f6c470)