Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I check the bundle version of our application programmatically? [duplicate]

Tags:

iphone

I have made an application and I have installed it on my iphone, but I want to check my application bundle version programatically. How can that be done?

like image 750
MD. Avatar asked Apr 17 '10 06:04

MD.


1 Answers

NSString *versionString = [[NSBundle mainBundle] objectForInfoDictionaryKey:(NSString*)kCFBundleVersionKey]; 
like image 165
Vladimir Avatar answered Oct 20 '22 06:10

Vladimir