I want to read the bundle version info from Info.plist into my code, preferably as a string. How can I do this?

link|improve this question

feedback

1 Answer

up vote 33 down vote accepted

You can read your Info.plist as a dictionary with

[[NSBundle mainBundle] infoDictionary]

And you can easily get the version at the CFBundleVersion key that way.

Finally, you can get the version with

NSDictionary* infoDict = [[NSBundle mainBundle] infoDictionary];
NSString* version = [infoDict objectForKey:@"CFBundleVersion"];
link|improve this answer
Perfect. That's a lot simpler than all the lines of CF* functions I was using... I was sure there must have been a quick way to get the NSDictionary. – Stew Oct 31 '10 at 6:56
6  
For the version number, this doesn't matter, but for other keys you might want to use objectForInfoDictionaryKey: instead, since it returns the localized value if available: [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleDisplayName"] – Andreas Jan 25 '11 at 17:10
4  
Note in Xcode4 if you look at the target's summary panel you'll see Version & Build fields. CFBundleVersion has been repurposed to be Build and Version is CFBundleShortVersionString. – Answerbot Aug 24 '11 at 19:32
feedback

Your Answer

 
or
required, but never shown

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