advanced code snippet search
B0nis on 07/10/10
NSArray
07/10/10 06:06am
1 person have marked this snippet as a favorite
bobbym245
NSArray *array = [NSArray arrayWithObjects: @"One", @"Two", @"Three", @"Four", nil];for (NSString *element in array) { NSLog(@"element: %@", element);}
Report this snippet Tweet
Comment:
You need to login to post a comment.