blob: c2a1c414e663c1be8c16872fe2b0aecf10180a70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#import "Somefile.h"
NSDictionary *dictionary = [NSDictionary dictionaryWithObjectsAndKeys:
@"quattuor", @"four", @"quinque", @"five", @"sex", @"six", nil];
NSString *key;
for (key in dictionary) {
NSLog(@"English: %@, Latin: %@", key, [dictionary valueForKey:key]);
}
|