首页 > 代码库 > 遍历collection
遍历collection
[链接](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 < count; i++)
{
id object = array[i];
…
}
```
- 使用多线程
如果对元素的每一个操作比较耗时,那么利用并行操作会节省时间。
##遍历NSSet
- 多数时间使用` for (id object in set)`
- 如果想修改,使用`(id object in [set copy])`
- 如果想利用并行性,使用` [set enumerateObjectsWithOptions:usingBlock:] `
##遍历NSDictionary
- 多数时间使用` [dictionary enumerateKeysAndObjectsUsingBlock:] `
- 如果需要修改,使用` for (id key in [dictionary allKeys]) `
- 如果想利用并行性,使用`[dictionary enumerateKeysAndObjectWithOptions:usingBlock:] `
遍历collection
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。