I want to check if an NSDictionary is empty. I am doing it like this.
NSDictionary
mutDictValues = [[[NSUserDefaults standardUserDefaults] objectForKey:@\"dicV
try this,
if([myDict count] > 0) NSLog(@"Dictionary is not empty"); else NSLog(@"Dictionary is empty");