26 lines
381 B
Objective-C
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]);
|
|
}
|
|
|