5 lines
70 B
Objective-C
5 lines
70 B
Objective-C
NSArray *collect;
|
|
//...
|
|
for(Type i in collect){
|
|
NSLog(@"%@", i);
|
|
}
|