web-dev-qa-db-ja.com

Objective-Cの辞書で各キーの値を取得する方法

キーと値のペアを保持する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.
}

どうやって進める? plzのヘルプ

20
suse
for (id key in dictobj)
{
    id value = [dictobj objectForKey:key];
    [value doSomething];
}
44
dreamlax

私はあなたの質問が何を求めているのか完全に明確ではありませんが、あなたは探しているかもしれません:

for (id currentValue in [dictobj allValues])
{
    //stuff with currentValue
}
6
andyvn22
NSArray *array = [viewControllers allValues];
for (int i = 0; i<array.count; i++) {        
    MenuListingVC *vc = array[i];
    [vc tableDataReload];
}
0
Ravi Kumar