一、判断一个对象是否包含在一个数组中
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:@"."];