キーと値のペアを保持する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のヘルプ
for (id key in dictobj)
{
id value = [dictobj objectForKey:key];
[value doSomething];
}
私はあなたの質問が何を求めているのか完全に明確ではありませんが、あなたは探しているかもしれません:
for (id currentValue in [dictobj allValues])
{
//stuff with currentValue
}
NSArray *array = [viewControllers allValues];
for (int i = 0; i<array.count; i++) {
MenuListingVC *vc = array[i];
[vc tableDataReload];
}