NSDictionary *myDict = @{@"one":@"1",@"two":@"2"}; for (NSDictionary* tmp in myDict) { NSLog(@"%@",tmp); }
调查结果:
我的 tmp 是NSString
tmp
我想要一个 dictionary , key = 1, value =1
dictionary
key
value
【玩转 GPU】有奖征文
精美礼品等你拿!
for in for NSDictionary 将迭代密钥。
for in
NSDictionary
for (NSString * key in myDict) { NSLog(@"%@",key); NSString * value = [myDict objectForKey:key]; }
如果你想要一本字典。您必须根据这些值创建一个字典。
for (NSString * key in myDict) { NSLog(@"%@",key);