Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何查看内容NSMutableDictionary?
NSMutableDictionary
只需在控制台中打印内容:
NSLog(@"%@", [yourDict description]);
遍历字典元素:
for (id key in [yourDict allKeys]){ id obj = [yourDict objectForKey: key]; // Do something with them }
NSLog(@"yourMutableDictionary - %@",yourMutableDictionary);