AppDelegate警告 Initalizing 'AppDelegate * __strong'

使用ARC时,获取全局的AppDelegate会有上面的警告

下面这样写会有警告

AppDelegate *app = [UIApplicationsharedApplication].delegate;

修改为

AppDelegate *app =(AppDelegate*)[UIApplicationsharedApplication].delegate;

这样警告就没有了

你可能感兴趣的:(AppDelegate警告 Initalizing 'AppDelegate * __strong')