blob: a5a8947557935254ddd8dc89742c0511daa235b4 (
plain)
1
2
3
4
5
6
7
|
@selector(methodNameWithArg:);
@selector (methodNameNoArg);
@selector (methodNameArg1:arg2: );
NSArray *sortedTZs = [ [ NSTimeZone knownTimeZoneNames ]
sortedArrayUsingSelector : @selector ( compare: ) ];
|