[categories] [index] [all (552)] [latest]
Cache the implementation pointer for -[NSString hasPrefix:]
SEL hasPrefixSelector = @selector(hasPrefix:);
BOOL (*hasPrefixIMP) (id, SEL, id) = (BOOL (*) (id, SEL, id))[@"" methodForSelector:hasPrefixSelector];
Use the cached pointer instead of sending the message
BOOL b = hasPrefixIMP (@"Europe", hasPrefixSelector, @"e");