I need to check if an dict has a key or not. How?
For checking existence of key in NSDictionary:
if([dictionary objectForKey:@"Replace your key here"] != nil) NSLog(@"Key Exists"); else NSLog(@"Key not Exists");