溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

iOS中如何實(shí)現(xiàn)遍歷

發(fā)布時(shí)間:2021-07-24 14:28:26 來(lái)源:億速云 閱讀:181 作者:小新 欄目:移動(dòng)開(kāi)發(fā)

小編給大家分享一下iOS中如何實(shí)現(xiàn)遍歷,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

在iOS開(kāi)發(fā)中,可以使用多種方法進(jìn)行元素遍歷,具體有一下幾種:

經(jīng)典for循環(huán)

NSArray *iosArray = @[@"a", @"b", @"c", @"d", @"e", @"f", @"g"];
for (int i = 0; i < iosArray.count; i++) {
  //處理數(shù)組中數(shù)據(jù)
  NSLog(@"%@", iosArray[i]);
}

NSEnumerator遍歷

NSArray *iosArray = @[@"a", @"b", @"c", @"d", @"e", @"f", @"g"];
NSEnumerator *enumerator = [iosArray objectEnumerator];//正向遍歷
// NSEnumerator *enumerator = [iosArray reverseObjectEnumerator];//反向遍歷

id object;

while ((object = [enumerator nextObject]) != nil) {
  //處理枚舉器中的數(shù)據(jù)
  NSLog(@"%@", object);
}

for-in快速遍歷

NSArray *iosArray = @[@"a", @"b", @"c", @"d", @"e", @"f", @"g"];
for (NSString *obj in iosArray) {
  //處理數(shù)組中的數(shù)據(jù)
  NSLog(@"%@", obj);
}

EnumeratorBlock遍歷

NSArray *iosArray = @[@"a", @"b", @"c", @"d", @"e", @"f", @"g"];
[iosArray enumerateObjectsUsingBlock:^(id _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
  NSLog(@"%@", obj);
  if ([obj isEqualToString:@"e"]) {
    *stop = YES;  // 跳出遍歷
  }
}];

另外,EnumeratorBlock還支持反向遍歷,并發(fā)遍歷,并發(fā)遍歷可以使用多核的優(yōu)化,充分利用系統(tǒng)的資源。

反向遍歷

NSArray *iosArray = @[@"a", @"b", @"c", @"d", @"e", @"f", @"g"];
[iosArray enumerateObjectsWithOptions:NSEnumerationReverse usingBlock:^(NSString *obj, NSUInteger idx, BOOL * _Nonnull stop) {
  NSLog(@"%@", obj);
  if ([obj isEqualToString:@"e"]) {
    *stop = YES;
  }
}];

并發(fā)遍歷

NSArray *iosArray = @[@"a", @"b", @"c", @"d", @"e", @"f", @"g"];
NSMutableArray *iosMutableArray = [NSMutableArray arrayWithArray:iosArray];
[iosMutableArray enumerateObjectsWithOptions:NSEnumerationConcurrent usingBlock:^(NSString *obj, NSUInteger idx, BOOL * _Nonnull stop) {
  obj = [NSString stringWithFormat:@"_%@", obj];
  [iosMutableArray replaceObjectAtIndex:idx withObject:obj];
  NSLog(@"%@", obj);

  if ([obj isEqualToString:@"_I"]) {
    *stop = YES;
  }
}];

dispatch_apply遍歷

dispatch_apply類似于for循環(huán),這里需要注意的是,dispatch_apple是同步調(diào)用,調(diào)用完畢返回結(jié)果,并且由于是GCD實(shí)現(xiàn),所以可以使用并發(fā)隊(duì)列或者是串行隊(duì)列。代碼如下:

dispatch_queue_t queue = dispatch_queue_create("queue", DISPATCH_QUEUE_CONCURRENT);
//  dispatch_queue_t queue = dispatch_queue_create("queue", DISPATCH_QUEUE_SERIAL); // 串行隊(duì)列
dispatch_apply(array.count, queue, ^(size_t i) {
  Enumerate *enumerate = [array objectAtIndex:i];
  NSLog(@"number: %ld", enumerate.number);
});

遍歷的注意事項(xiàng)

for循環(huán)中不要修改數(shù)組

遍歷過(guò)程中是不能隨便刪除遍歷的元素的,如果需要?jiǎng)h除元素,可以先復(fù)制一份出來(lái),比如如下的代碼會(huì)有問(wèn)題:

NSMutableArray *iosArray = @[@"a", @"b", @"c", @"d", @"e", @"f", @"g"];
for (NSString *obj in iosArray) {
  //處理數(shù)組中的數(shù)據(jù)
  if([@"e" isEqualTo:obj]) {
    [iosArray removeObject:obj];
  }
}

但是使用enumerateBlock可以在block內(nèi)部做removeObject操作,原因應(yīng)該是和Block的特性有關(guān), 在Block中會(huì)保存變量的值,而不會(huì)隨變量的值的改變而改變 。

遍歷的速率

當(dāng)數(shù)組容量很大的時(shí)候,如果只是進(jìn)行數(shù)組遍歷的話,使用for-in是最快速的,其次是并發(fā)遍歷,這個(gè)很多人都以為enumerateBlock是最快的。

遍歷實(shí)踐tips

數(shù)組分組

在開(kāi)發(fā)中,有時(shí)需要對(duì)數(shù)組進(jìn)行某種情況的分組,比如,一個(gè)擁有很多消息模型的數(shù)組,我們需要根據(jù)消息的創(chuàng)建月份進(jìn)行分組,那么可以使用下面的方法實(shí)現(xiàn):

NSMutableSet *set=[NSMutableSet set];
NSArray *array = @[message1, message2, message3, message4, message5, message6, message7];
__block NSArray *tempDataArray = [NSArray arrayWithArray:array];
[tempDataArray enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
  [set addObject:obj.month];//利用set不重復(fù)的特性,得到有多少組,根據(jù)數(shù)組中消息的月份屬性
}];
[set enumerateObjectsUsingBlock:^(id obj, BOOL *stop) {//遍歷set數(shù)組
  NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF.month = %@", obj];//創(chuàng)建謂詞篩選器
  NSArray *group = [tempDataArray filteredArrayUsingPredicate:predicate];//用數(shù)組的過(guò)濾方法得到新的數(shù)組,在添加的最終的數(shù)組
}

倒序遍歷

倒序遍歷也很常見(jiàn),可以使用上面的反向遍歷來(lái)實(shí)現(xiàn)。

set排序

這個(gè)和Emunerate其實(shí)沒(méi)有關(guān)系,但是也很實(shí)用,我們知道set是無(wú)序的,但是有時(shí)需要實(shí)現(xiàn)有順序的set,可以使用下面來(lái)實(shí)現(xiàn):

//由于set無(wú)序,現(xiàn)將set轉(zhuǎn)換成nsarray
NSArray *sortDescriptor = @[[[NSSortDescriptor alloc] initWithKey:@"self" ascending:NO]];
NSArray *sortSetArray = [set sortedArrayUsingDescriptors:sortDescriptor];

其實(shí)原理是將set轉(zhuǎn)化成array來(lái)實(shí)現(xiàn)的。

以上是“iOS中如何實(shí)現(xiàn)遍歷”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

ios
AI