アプリケーション言語と 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];