これでいい
for (id key in dictionary){
NSLog(@"%@,%@", key, [dictionary valueForKey:key]);
}
Valueだけ欲しいなら
for (id value in [dictionary objectEnumerator]) {
NSLog(@"%@", value);
}
Go to list of users who liked
More than 5 years have passed since last update.
これでいい
for (id key in dictionary){
NSLog(@"%@,%@", key, [dictionary valueForKey:key]);
}
Valueだけ欲しいなら
for (id value in [dictionary objectEnumerator]) {
NSLog(@"%@", value);
}
Register as a new user and use Qiita more conveniently
Go to list of users who liked