Is there a way to read the app's bundled plist file, I am wanting to pull the value for Bundle version.
+8
A:
See Getting the Bundle’s Info.plist Data.
[[NSBundle mainBundle] objectForInfoDictionaryKey:(NSString *)kCFBundleVersionKey];
should get you the bundle version.
Ole Begemann
2010-02-11 14:28:18
Perfect, thank you!
Rob Bonner
2010-02-11 15:57:37