ios – 为什么在使用ARC的快速枚举循环中需要__strong

当我做下面的事情时,我得到一个错误

for (UIView* att in bottomAttachments) {
    if (i <= [cells count]) {
        att = [[UIView alloc] extraStuff]
    }
}

无法在ARC中修改快速枚举变量:声明__strong

__strong做了什么以及为什么要添加它?

解决方法

If a variable is declared in the condition of an Objective-C fast enumeration loop,and the variable has no explicit ownership qualifier,then it is qualified with const __strong and objects encountered during the enumeration are not actually retained.

Rationale
This is an optimization made possible because fast enumeration loops promise to keep the objects retained during enumeration,and the collection itself cannot be synchronously modified. It can be overridden by explicitly qualifying the variable with __strong,which will make the variable mutable again and cause the loop to retain the objects it encounters.

source

正如Martin在评论中指出的那样,值得注意的是,即使使用__strong变量,通过重新分配它你也不会修改数组本身,但是你只需要将局部变量指向另一个对象.

在迭代数组时对数组进行变换通常是一个坏主意.只需在迭代时构建一个新数组,你就可以了.

相关文章

在有效期内的苹果开发者账号(类型为个人或者公司账号)。还...
Appuploader官网--IOS ipa上传发布工具,证书制作工具跨平台...
苹果在9月13号凌晨(北京时间)发布 iOS 16,该系统的设备可...
计算机图形学--OpenGL递归实现光线追踪
Xcode 14打出来的包在低版本系统运行时会崩溃,报错信息是Li...