Re: Reading plists
Re: Reading plists
- Subject: Re: Reading plists
- From: David Remahl <email@hidden>
- Date: Wed, 27 Jun 2001 07:31:01 +0200
Hi gang!
Is there an easy way of reading keys and values in the Info.plist that
accompanies my application bundle?
NP. NSBundle has a infoDictionary method, so you can do this:
[[NSBundle mainBundle] infoDictionary] to get an NSDictionary to read
keys and values from.
/ david