Advertisement
priore

Settings from a PLIST file

Jul 25th, 2014
1,287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. static NSDictionary *settings;
  2.  
  3. + (id)settingsValueForKeyPath:(NSString*)keyPath
  4. {
  5.     if (settings == nil) {
  6.         NSString *plistPath = [[[NSBundle mainBundle] bundlePath] stringByAppendingPathComponent:@"settings.plist"];
  7.         settings = [[NSDictionary alloc] initWithContentsOfFile:plistPath];
  8.     }
  9.    
  10.     return [settings valueForKeyPath:keyPath];
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement