LoginSignup
70
68

More than 5 years have passed since last update.

NSDictionaryの中身を全部取り出すときは

Last updated at Posted at 2012-03-22

[dictionary keyEnumerator]を使う。


NSDictionary *dictionary = [NSDictionary dictionaryWithObject:@"hoge" forKey:@"fuga"];
for (id key in [dictionary keyEnumerator]) {
    NSLog(@"Key:%@ Value:%@", key, [dictionary valueForKey:key]);
}

70
68
3

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
70
68