NSMutableArray*array1=[NSMutableArray arrayWithObjects: @"1", @"2", @"3", nil];
NSMutableArray*array2=[NSMutableArray arrayWithObjects: @"A", @"B", @"C",@"D", nil];
NSMutableArray*array2=[NSMutableArray arrayWithObjects: @"AA", @"BB", @"CC", nil];
NSMutableArray*MasterArray=[NSMutableArray arrayWithObjects: array1,array2,array3, nil];
如何获取 MasterArray 中存在的每个数组的对象数?
Best Answer-推荐答案 strong>
如果不是你想要的,告诉我。
[MasterArray enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
if ([obj isKindOfClass:[NSArray class]]) {
NSLog(@"%lu", [obj count]) ;
}
}] ;
关于ios - 如何获取另一个数组中存在的每个数组的对象计数?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/21641450/
|