Hacker News new | ask | show | jobs
by ryanpetrich 5642 days ago
The worst offender is the comparison methods:

    NSString *myString = nil;
    if ([myString compare:@"something"] == NSOrderedSame) {
        ...
    }