使用ARC时,获取全局的AppDelegate会有上面的警告
下面这样写会有警告
AppDelegate *app = [UIApplicationsharedApplication].delegate;
修改为
AppDelegate *app =(AppDelegate*)[UIApplicationsharedApplication].delegate;
这样警告就没有了
使用ARC时,获取全局的AppDelegate会有上面的警告
下面这样写会有警告
AppDelegate *app = [UIApplicationsharedApplication].delegate;
修改为
AppDelegate *app =(AppDelegate*)[UIApplicationsharedApplication].delegate;
这样警告就没有了