最近有一个需要,只存储服务器返回数组里最多3个照片,所以遍历数时需要做一个判断:
1.版本1
1 | [picArray enumerateObjectsUsingBlock:^(NSDictionary * dic, NSUInteger idx, BOOL * _Nonnull stop) { |
2.版本2
1 | [picArray enumerateObjectsUsingBlock:^(NSDictionary * dic, NSUInteger idx, BOOL * _Nonnull stop) { |
3.版本3
1 | [picArray enumerateObjectsUsingBlock:^(NSDictionary * dic, NSUInteger idx, BOOL * _Nonnull stop) { |
注意点
大家看懂了吗,*stop= YES;时,不会马上结束本次遍历,还会执行下面的代码。
> 注:本文首发于 [iHTCboy's blog](http://iHTCboy.com),如若转载,请注来源