我正在维护一个NSMutableDictionary
来保存键和值对。现在我需要对其中的每个值执行一些操作。如何从字典中检索值。
// this is NSMutableDIctionary
NSMutableDictionary *dictobj = [[NSMutableDictionary alloc]init];
// in methodA
-(void)methodA
{
//get the value for each key and peform an operation on it.
}
如何进行?请帮忙
答案 0 :(得分:44)
for (id key in dictobj)
{
id value = [dictobj objectForKey:key];
[value doSomething];
}
答案 1 :(得分:6)
我不完全清楚你的问题是什么,但你可能正在寻找:
for (id currentValue in [dictobj allValues])
{
//stuff with currentValue
}
答案 2 :(得分:0)
NSArray *array = [viewControllers allValues];
for (int i = 0; i<array.count; i++) {
MenuListingVC *vc = array[i];
[vc tableDataReload];
}