目前找到来4个解决办法,第三个尤为简单方便
/////////1111111 NSArray * arr = @[@"1",@"2",@"3",@"4",@"5"]; //是否包含 if ([arr containsObject:@"3"]) { NSInteger index = [arr indexOfObject:@"3"]; NSLog(@"-1---%ld---",index); } //输出是 2 //////////22222222 if ([arr indexOfObject:@"5"] != NSNotFound) { NSInteger inde =[arr indexOfObject:@"5"] ; NSLog(@"-2---%ld----",inde); }else{ NSLog(@"不存在"); } //////22222---->>>>3333333 NSInteger inde =[arr indexOfObject:@"5"]; if (inde != NSNotFound) { NSLog(@"-2---%ld----",inde); }else{ NSLog(@"不存在"); } ///////44444 用for in 来判断
时间: 2024-10-27 05:51:06