- 基本 Objective-C
- Objective-C - 主页
- Objective-C - 概述
- Objective-C - 环境设置
- Objective-C - 程序结构
- Objective-C - 基本语法
- Objective-C - 数据类型
- Objective-C - 变量
- Objective-C - 常量
- Objective-C - 运算符
- Objective-C - 循环
- Objective-C - 决策
- Objective-C - 函数
- Objective-C - 块
- Objective-C - 数字
- Objective-C - 数组
- Objective-C - 指针
- Objective-C - 字符串
- Objective-C - 结构
- Objective-C - 预处理器
- Objective-C - Typedef
- Objective-C - 类型转换
- Objective-C - 日志处理
- Objective-C - 错误处理
- 命令行参数
- 高级 Objective-C
- Objective-C - 类和对象
- Objective-C - 继承
- Objective-C - 多态性
- Objective-C - 数据封装
- Objective-C - 类别
- Objective-C - 摆姿势
- Objective-C - 扩展
- Objective-C - 协议
- Objective-C - 动态绑定
- Objective-C - 复合对象
- Obj-C - 基础框架
- Objective-C - 快速枚举
- Obj-C - 内存管理
- Objective-C 有用资源
- Objective-C - 快速指南
- Objective-C - 有用的资源
- Objective-C - 讨论
Objective-C 快速枚举
快速枚举是 Objective-C 的一项功能,有助于通过集合进行枚举。因此,为了了解快速枚举,我们首先需要了解集合,这将在下一节中进行解释。
Objective-C 中的集合
集合是基本构造。它用于保存和管理其他对象。集合的全部目的是提供一种有效存储和检索对象的通用方法。
有几种不同类型的集合。虽然它们都实现了能够容纳其他物体的相同目的,但它们的主要区别在于检索物体的方式。Objective-C 中最常用的集合是 -
- NS集合
- NSArray
- NS词典
- NSMutableSet
- NSMutableArray
- NSMutableDictionary
如果您想了解更多关于这些结构的信息,请参考Foundation Framework中的数据存储。
快速枚举语法
for (classType variable in collectionObject ) { statements }
这是快速枚举的示例。
#import <Foundation/Foundation.h> int main() { NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; NSArray *array = [[NSArray alloc] initWithObjects:@"string1", @"string2",@"string3",nil]; for(NSString *aString in array) { NSLog(@"Value: %@",aString); } [pool drain]; return 0; }
现在,当我们编译并运行该程序时,我们将得到以下结果。
2013-09-28 06:26:22.835 demo[7426] Value: string1 2013-09-28 06:26:22.836 demo[7426] Value: string2 2013-09-28 06:26:22.836 demo[7426] Value: string3
正如您在输出中看到的,数组中的每个对象都按顺序打印。
快速向后枚举
for (classType variable in [collectionObject reverseObjectEnumerator] ) { statements }
下面是快速枚举中的reverseObjectEnumerator的示例。
#import <Foundation/Foundation.h> int main() { NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; NSArray *array = [[NSArray alloc] initWithObjects:@"string1", @"string2",@"string3",nil]; for(NSString *aString in [array reverseObjectEnumerator]) { NSLog(@"Value: %@",aString); } [pool drain]; return 0; }
现在,当我们编译并运行该程序时,我们将得到以下结果。
2013-09-28 06:27:51.025 demo[12742] Value: string3 2013-09-28 06:27:51.025 demo[12742] Value: string2 2013-09-28 06:27:51.025 demo[12742] Value: string1
正如您在输出中看到的,数组中的每个对象都会被打印,但与正常的快速枚举相比,顺序相反。