I'm checking to see if the items in this dictionary (which are returned from the server) are NULL, like this:
NSString *imageURL = [userDict objectForKey:@"image_url"];
NSString *userName = [userDict objectForKey:@"username"];
NSString *typeName = [userDict objectForKey:@"type"];
if (imageURL == NULL || userName == NULL || typeName == NULL || imageURL.length == 0) {
localImage = [UIImage imageNamed:@"first.png"];
[addAnnotation setTitle:@"Something"];
[addAnnotation setSubTitle:@"Wrong"];
}
However, in one record (the above is in a for loop) [userDict objectForKey:@"image_url"] returns "<null>" but is not getting handled correctly in the if statement above. Why isn't my null check working?
