「Objective-C」NSMutableDictionaryの使い方
サンプルコード
NSMutableDictionary *dictobj = [[NSMutableDictionary alloc]init];
for (id key in dictobj)
{
id value = [dictobj objectForKey:key];
[value doSomething];
}
Coding Changes the World
サンプルコード
NSMutableDictionary *dictobj = [[NSMutableDictionary alloc]init];
for (id key in dictobj)
{
id value = [dictobj objectForKey:key];
[value doSomething];
}