iOS ARC使用时注意事项以及报错解决方法
时间:2014-04-29 13:26:20
收藏:0
阅读:344
1、报错The current deployment target does not support automated __weak references
这个错误是说支持的iOS版本比较低不支持weak关键字,要将其换成 unsafe_unretained 问题就解决了。
评论(0)