[链接](http://iosdevelopertips.com/objective-c/high-performance-collection-looping-objective-c.html)
##遍历NSArray
- 正向遍历
```
for (id object in array)
```
- 反向遍历
```
for (id object in [array reverseObjectEnumerator])
```
- 如果在遍历中修改
先计算出array的count,然后使用for循环。在for循环中记录需要修改的index,然后修改。
```
NSUInteger count = [array count];
for (NSUInteger i = 0; i 遍历collection
时间: 2024-12-08 08:47:35