我有这个NSDictionary:
我需要在champions
中找到一个对象,它具有键name
的定义值(在这种情况下,用户输入的值是“Nasus”),然后检索所有键/值对来自stats
。你能帮帮我吗?
谢谢。
答案 0 :(得分:2)
从字典theOfficial
获取密钥documentation
的对象:
NSObject *pleaseRead = [theOfficial objectForKey:documentation];
从字典aQuickGoogleSearch
获取所有对象:
NSArray *orEvenTry = [aQuickGoogleSearch allValues];
将对象从字典中拉出后,可以将其视为普通对象。
Foo *myFooVar = [someDictionary objectForKey:@"myKey"];
Bar *myBarVar = [myFooVar someMethodThatReturnsBar];