Skip to content

Instantly share code, notes, and snippets.

@myaaaaa-chan
Created May 9, 2013 07:18
Show Gist options
  • Select an option

  • Save myaaaaa-chan/5546063 to your computer and use it in GitHub Desktop.

Select an option

Save myaaaaa-chan/5546063 to your computer and use it in GitHub Desktop.
xcode4で作ったplistのArrayを読み込む ref: http://qiita.com/items/7f35e47133ceab36dcdc
NSString *path = [[NSBundle mainBundle] pathForResource:@"config" ofType:@"plist"];
NSDictionary *propDictionary = [NSDictionary dictionaryWithContentsOfFile:path];
NSArray *array = [NSArray arrayWithArray:[propDictionary objectForKey:@"key"]];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment