我有一个带有英语和本地化版本的本地化AboutApp.xib文件,但即使我将手机的语言设置为西班牙语,它也会加载英文版本。如何根据语言加载西班牙语版本?
// Make sure AboutApp View is allocated
if (self.aboutAppController == nil) {
AboutApp* aboutApp =
[[AboutApp alloc] initWithNibName:@"AboutApp" bundle:nil];
self.aboutAppController = aboutApp;
[aboutApp release];
}
[UIView beginAnimations: nil context: nil];
[UIView setAnimationDuration: 1.0f];
[UIView setAnimationTransition: UIViewAnimationTransitionCurlUp
forView: [self.view window] cache: YES];
[self presentModalViewController: self.aboutAppController animated: YES];
[UIView commitAnimations];