「Objective-C」NSMutableDictionaryの使い方

サンプルコード
NSMutableDictionary *dictobj = [[NSMutableDictionary alloc]init];

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

IOS

Posted by arkgame