How to get my application version from inside my code?

2010-02-27 Thread Bengt Nilsson
Hi! I need to access the bundle version of my application from inside my code to show it in the About.. box. How can I do this? BN ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to

Re: How to get my application version from inside my code?

2010-02-27 Thread Steven Degutis
This is already shown in the default About box window, which is sufficient for most apps. But if you really need to have your own custom About box, you can get most of that information from -[NSBundle objectForInfoDictionaryKey:] -Steven On Sat, Feb 27, 2010 at 4:21 PM, Bengt Nilsson

Re: How to get my application version from inside my code?

2010-02-27 Thread David Blanton
You don't need to , it is displayed automagically! On Feb 27, 2010, at 2:21 PM, Bengt Nilsson wrote: Hi! I need to access the bundle version of my application from inside my code to show it in the About.. box. How can I do this? BN ___