iOS 陣列中那些實用的方法

joker_king發表於2018-12-19

一、判斷一個物件是否包含在一個陣列中

BOOL result = [array3 containsObject:@"XXX"];
NSLog(@"%@",result ? @"YES" : @"NO");
複製程式碼

二、獲取物件在陣列中的下標

NSUInteger index = [array3 indexOfObject:@"XXX"];
NSLog(@"%@:%ld",@"XXX",index);
複製程式碼

三、根據字串的特徵來擷取字串,儲存在陣列中

NSArray *contentObjects = [string componentsSeparatedByString:@"\n"];
複製程式碼

四、將陣列中的元素用@“.”拼接起來

NSString *string1 = [array4 componentsJoinedByString:@"."];
複製程式碼

相關文章