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