NSMutableArray *myArray = [[NSMutableArray alloc] init];
[myArray addObject:@"First line"];
[myArray addObject:@"Second line"];
[myArray addObject:@"Third line"];
[myArray addObject:@"Fourth line"];
[myArray addObject:@"Fifth line"];
for (NSString *line in myArray) {
// Results from NSLog are in the Console
NSLog([NSString stringWithFormat:@"line: %@", line]);
} Results from NSLog are in the Console, you can find this one by pressing "Apple key + Shift + R" or Run->Console

