我使用多语言应用程序,我想在个人资料用户中手动更改语言。
我已经有Localization.string
如果我更改设备语言,则应用程序中的语言会更改为。
但是我想从用户个人资料示例中手动更改语言:
为此,我使用下一个代码:
private func changeToLanguage(_ langCode: String) {
if Bundle.main.preferredLocalizations.first != langCode {
let message = "In order to change the language, the App must be closed and reopened by you."
let confirmAlertCtrl = UIAlertController(title: "App restart required", message: message, preferredStyle: .alert)
let confirmAction = UIAlertAction(title: "Close now", style: .destructive) { _ in
UserDefaults.standard.set([langCode], forKey: "AppleLanguages")
UserDefaults.standard.synchronize()
exit(EXIT_SUCCESS)
}
confirmAlertCtrl.addAction(confirmAction)
let cancelAction = UIAlertAction(title: "Cancel", style: .cancel, handler: nil)
confirmAlertCtrl.addAction(cancelAction)
present(confirmAlertCtrl, animated: true, completion: nil)
}
UserDefaults.standard.set([langCode], forKey: "AppleLanguages")
UserDefaults.standard.synchronize()
}
@IBAction func didPressChangeLanguageButton() {
let message = "Change language of this app including its content."
let sheetCtrl = UIAlertController(title: "Choose language", message: message, preferredStyle: .actionSheet)
for languageCode in Bundle.main.localizations.filter({ $0 != "Base" }) {
let langName = Locale.current.localizedString(forLanguageCode: languageCode)
let action = UIAlertAction(title: langName, style: .default) { _ in
self.changeToLanguage(languageCode) // see step #2
}
sheetCtrl.addAction(action)
}
let cancelAction = UIAlertAction(title: "Cancel", style: .cancel, handler: nil)
sheetCtrl.addAction(cancelAction)
sheetCtrl.popoverPresentationController?.sourceView = self.view
sheetCtrl.popoverPresentationController?.sourceRect = self.changeLanguageButton.frame
present(sheetCtrl, animated: true, completion: nil)
}
我使用这个捆绑包:
Bundle.main.localizations.filter({ $0 != "Base" })
Locale.current.localizedString(forLanguageCode: "en")
对于此代码,我有:
当我按下按钮时,我得到了错误:
原因:“添加到UIAlertController的动作必须具有标题”
我不知道问题出在哪里。
答案 0 :(得分:2)
在我最近使用的应用程序中,我使用了这个localize,它很简单,并且没有关闭应用程序,我们可以根据语言切换应用程序。
将localize.swift文件添加到您的项目中,最后在需要的地方调用以下函数
if let pre = Bundle.main.preferredLocalizations.first, !pre.isEmpty {
if pre == Language.english.rawValue{
Language.language = Language.arabic
}else{
Language.language = Language.english
}
}
答案 1 :(得分:0)
选择语言后,您将无法重新启动应用程序,因为苹果不允许这样做。相反,您可以做的一件事就是修改已实现的本地化解决方案,以更改应用程序语言而无需重新启动它。
点击此链接以获取更多详细信息: manual language selection in an iOS-App (iPhone and iPad)