Leonardo
Leonardo

Reputation: 9857

NSDictionary with specific property of plist

I have a plist with key values. Each key represent a language, let's say 'it' 'en' ....ecc

The value of each key is another key/value(=array) set. At startup I would like to create a dictionary by reading only a specific key. Let's say the locale of my iphone is 'it', then the init method would only parse it key, because the only way I found by now is to make a dictionary from the whole plist file and then another dictionary.

But I can imagine this can become quite cpu consuming if I add more language in the future.

thanks Leonardo

Upvotes: 0

Views: 238

Answers (1)

jrtc27
jrtc27

Reputation: 8536

Why not localize the plist file, thus having multiple plists?

Upvotes: 1

Related Questions