How to view the content of NSMutableDictionary
?
View content of NSMutableDictionary
Asked Answered
Just print contents in console:
NSLog(@"%@", [yourDict description]);
To iterate through dictionary elements:
for (id key in [yourDict allKeys]){
id obj = [yourDict objectForKey: key];
// Do something with them
}
NSLog(@"yourMutableDictionary - %@",yourMutableDictionary);
© 2022 - 2024 — McMap. All rights reserved.