iOS 枚举器
枚举器是一种苹果官方推荐的更加面向对象的一种遍历方式,相比于for循环,它具有高度解耦、面向对象、使用方便等优势。常用的有两个 enumerateObjectsUsingBlock
和enumerateKeysAndObjectsUsingBlock
NSArray的枚举器方法enumerateObjectsUsingBlock
用法:
- (IBAction)test3Action:(UIButton *)sender {
NSArray * arr = @[@"1",@"2",@"3",@"4",@"5"];
[arr enumerateObjectsUsingBlock:^(NSString * obj, NSUInteger idx, BOOL * _Nonnull stop) {
if (obj.intValue ==3 ) {
NSLog(@"stop %d",obj.intValue);
*stop = YES;
}
NSLog(@"intValue %d",obj.intValue);
}];
}
NSDictionary的枚举器方法enumerateKeysAndObjectsUsingBlock
它就一个参数就是block,这个block携带了三个参数,这将要把dictionary里面的key和value每次一组传递到block,enumerateKeysAndObjectsUsingBlock会遍历dictionary并把里面所有的key和value一组一组的展示给你,每组都会执行这个block。
- (IBAction)test3Action:(UIButton *)sender {
NSDictionary * dic = @{@"姓名":@"张三",@"年龄":@"12",@"性别":@"男"};
[dic enumerateKeysAndObjectsUsingBlock:^(id _Nonnull key, id _Nonnull obj, BOOL * _Nonnull stop) {
NSLog(@"key:%@ value:%@",key,obj);
}];
}
stop 的使用
可以通过重新赋值那个BOOL *stop来停止运行,停止遍历同时停止调用block。
- 只使用 *stop = YES; 结束枚举器,但要等到本次循环执行完成后才会结束枚举器。
- 只使用 return; 结束本次循环,相当于for循环中continue的用法。
- *stop = YES; 和 return; 同时使用,结束循环Block,不执行本次循环剩余的代码,相当于for循环中break的用法。
1.只使用 *stop = YES; 的情况
- (IBAction)test3Action:(UIButton *)sender {
NSArray * arr = @[@"1",@"2",@"3",@"4",@"5"];
[arr enumerateObjectsUsingBlock:^(NSString * obj, NSUInteger idx, BOOL * _Nonnull stop) {
if (obj.intValue ==3 ) {
NSLog(@"stop %d",obj.intValue);
*stop = YES;
}
NSLog(@"intValue %d",obj.intValue);
}];
}
输出打印内容:
ViewController.m:63 intValue 1
ViewController.m:63 intValue 2
ViewController.m:59 stop 3
ViewController.m:63 intValue 3
2.只使用 return; 的情况
- (IBAction)test3Action:(UIButton *)sender {
NSArray * arr = @[@"1",@"2",@"3",@"4",@"5",@"6",@"7",@"8",@"9",];
[arr enumerateObjectsUsingBlock:^(NSString * obj, NSUInteger idx, BOOL * _Nonnull stop) {
if (obj.intValue ==3 ) {
NSLog(@"stop %d",obj.intValue);
return;
}
NSLog(@"intValue %d",obj.intValue);
}];
NSLog(@"===========");
for (NSString * obj in arr) {
if (obj.intValue ==3 ) {
NSLog(@"stop %d",obj.intValue);
continue;
}
NSLog(@"intValue %d",obj.intValue);
}
}
输出打印内容:
ViewController.m:63 intValue 1
ViewController.m:63 intValue 2
ViewController.m:59 stop 3
ViewController.m:63 intValue 4
ViewController.m:63 intValue 5
ViewController.m:66 ===========
ViewController.m:73 intValue 1
ViewController.m:73 intValue 2
ViewController.m:69 stop 3
ViewController.m:73 intValue 4
ViewController.m:73 intValue 5
3.*stop = YES; 和 return; 同时使用
- (IBAction)test3Action:(UIButton *)sender {
NSArray * arr = @[@"1",@"2",@"3",@"4",@"5"];
[arr enumerateObjectsUsingBlock:^(NSString * obj, NSUInteger idx, BOOL * _Nonnull stop) {
if (obj.intValue ==3 ) {
NSLog(@"stop %d",obj.intValue);
*stop = YES;
return;
}
NSLog(@"intValue %d",obj.intValue);
}];
NSLog(@"===========");
for (NSString * obj in arr) {
if (obj.intValue ==3 ) {
NSLog(@"stop %d",obj.intValue);
break;
// continue;
}
NSLog(@"intValue %d",obj.intValue);
}
}
输出打印内容:
ViewController.m:63 intValue 1
ViewController.m:63 intValue 2
ViewController.m:59 stop 3
ViewController.m:66 ===========
ViewController.m:73 intValue 1
ViewController.m:73 intValue 2
ViewController.m:69 stop 3
iOS 枚举器 中 stop 的实现
自己创建一个枚举器,block中声明个带指针的 stop,当调用 block的时候,获取 stop 的地址,拿到他的值,就可以使用了
- (IBAction)test3Action:(UIButton *)sender {
NSArray * arr = @[@"1",@"2",@"3",@"4",@"5"];
[self enumerateObjects:arr UsingBlock:^(NSNumber * obj, NSUInteger idx, BOOL *stop) {
if (obj.intValue ==3 ) {
NSLog(@"stop %d",obj.intValue);
*stop = YES;
}
NSLog(@"intValue %d",obj.intValue);
}];
}
- (void)enumerateObjects:(NSArray *)list UsingBlock:(void (^)(id obj, NSUInteger idx, BOOL *stop))block {
NSUInteger idx = 0;
for( id obj in list ){
BOOL stop = NO;
block(obj, idx++, &stop);
if( stop ){
break;
}
}
}
网友评论