We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No description provided.
The text was updated successfully, but these errors were encountered:
比如,当要删除数组中属性 needsToBeDeleted 值为 YES 的对象时,如果直接一遍快速枚举一边删掉的话,会导致崩溃:
needsToBeDeleted
for (MyObject *anObject in array) { if (anObject.needsToBeDeleted) { [array removeObject: anObject]; // 会导致奔溃 } }
解决办法:
removeObjectsAtIndexes
Sorry, something went wrong.
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: