I want to check if an NSDictionary is empty. I am doing it like this.
NSDictionary
mutDictValues = [[[NSUserDefaults standardUserDefaults] objectForKey:@\"dicV
try this code
NSMutableDictionary *dict = ... BOOL isEmpty = ([dict count] == 0);