我想知道是否有人知道我如何连接我的应用程序语言和 NSLocalizeStrings,例如:我的应用程序在 fr、ru、ro 但用户设备在 en 上,当用户打开应用程序时它在 en 但在应用程序设置中有ro 或 fr。如何在 NSLocalizedString 中传递我的应用程序语言。谢谢。
UIAlertView *finishQuiz = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Finished Quiz",@"Quiz finished")
message:NSLocalizedString(@"You answered to all quiestions. If you win you will be informed by e-mail" ,@"Information")
delegate:self
cancelButtonTitle:NSLocalizedString(@"Le menu principale",@"MainMenu")
otherButtonTitles:nil, nil];