Mark McGranaghan 8d31ec147c move to vendor
2012-11-17 08:21:42 -08:00

26 lines
381 B
Objective-C

#import "Somefile.h"
@implementation ABC
- (id)a:(B)b {
return 1;
}
@end
@implementation ABC
- (void)xyz;
@end
NSDictionary *dictionary = [NSDictionary dictionaryWithObjectsAndKeys:
@"quattuor", @"four", @"quinque", @"five", @"sex", @"six", nil];
NSString *key;
for (key in dictionary) {
NSLog(@"English: %@, Latin: %@", key, [dictionary valueForKey:key]);
}