Go to File->New->File->Resource->Settings Bundle
- Replace the contents of Root.plist with the contents of this Gists Root.plist.
- Add whatever other fields you want
- Put the following inside your AppDelegate.m file to have the Version/Build set from the apps current settings
/* Settings App Bundle */
NSString *build = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleVersion"];
[[NSUserDefaults standardUserDefaults] setObject:build forKey:@"build_preferences"];
NSString *verison = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"];
[[NSUserDefaults standardUserDefaults] setObject:verison forKey:@"version_preferences"];
- ?????
- Profit