Xcode 7.3 使用__weak __typeof(self) weak self = self 出现的错误

最近两天升级了一下Xcode 7.3 出现
__weak typeof(self) weakSelf = self; 无法使用的错误

报错位置:

 __weak  typeof(self) weakSelf = self;

错误提示:

Cannot create __weak reference in file using manual reference counting
// 不能在文件中使用手动引用创建 __weak  引用,工程一般是自动管理的,不是在非ARC模式

解决方案一

在build setting 直接在search 内搜索 关键字 weak 就找到了

选中项目名字-> Target->Build Setting -> Apple LLVM7.1 - 
Language - Objective C ->Weak References in Manual Retain Release   将其value 设置为YES,

解决方案二:

将  `__weak`  替换成 `__unsafe_unretained`  
使用 `__unsafe_unretained ` 请注意以下问题:

注意事项 使用 __unsafe_unretained 注意以下问题:

__unsafe_unretained specifies a reference that does not keep the 
referenced object alive and is not set to nil when there are no 
strong references to the object. If the object it references is 
deallocated, the pointer is left dangling.

设置完毕,重新编译运行。

你可能感兴趣的:(Xcode 7.3 使用__weak __typeof(self) weak self = self 出现的错误)