I've got a plist which I localized. How do I load the plist properly?
Right now, I'm using this code:
NSArray *numbersArray = [[NSArray alloc] initWithContentsOfFile:
[[NSBundle mainBundle] pathForResource:@"Numbers" ofType:@"plist"]];
What do I need to change my code to in order to load the localized plist?
