tags:

views:

317

answers:

1

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
Perfect, thank you!
Rob Bonner