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