I want to display Local开发者_C百科ized.string file content at the display time, what is code for that?
You can try this :
NSLog(@"Welcome Text: %@", NSLocalizedString(@"YourKey", @""));
Your key is name of your key in localized.string file.
I want to display Local开发者_C百科ized.string file content at the display time, what is code for that?
You can try this :
NSLog(@"Welcome Text: %@", NSLocalizedString(@"YourKey", @""));
Your key is name of your key in localized.string file.
精彩评论