Как просмотреть содержимое NSMutableDictionary?
NSMutableDictionary
Просто распечатайте содержимое в консоли:
NSLog(@"%@", [yourDict description]);
Для перебора элементов словаря:
for (id key in [yourDict allKeys]){ id obj = [yourDict objectForKey: key]; // Do something with them }
NSLog(@"yourMutableDictionary - %@",yourMutableDictionary);