Is it possible to access the app version that I specify in the xcode project setting from within the application?

I'm trying to create an auto-updating "About" view controller, and it would be nice to receive bug reports listing the version of the app.

I know this can be done with built-in constant, but I'm wandering if there's a better way.

Thank you!

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

You can read you Info.plist in your main bundle for the according key.

Sample code:

NSBundle     *bundle    = [NSBundle mainBundle];
NSString     *infosPath = [bundle pathForResource:@"Info" ofType:@"plist"];
NSDictionary *infosDict = [[NSDictionary alloc] initWithContentsOfFile:infosPath];

NSLog(@"CFBundleVersion : %@" , [infosDict valueForKey:@"CFBundleVersion"]);

I just tested this code and its working fine. Do a right-clik on you Info.plist to display raw key names.

Also, I was testing this code with a plist with spaces in its names, which gave me 'null' for the infosPath. Deleting the space solves the problem.

link|improve this answer
feedback

This is how I can get the version number that has to be incremented for App store upload:

NSString* version = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.