gpt4 book ai didi

iOS 本地化问题

转载 作者:行者123 更新时间:2023-11-29 02:22:15 25 4
gpt4 key购买 nike

我目前正在尝试将我的 iOS 应用程序本地化为法语。出于某种原因,我的 key 没有被正确识别。我的 .strings 法语文件如下所示:

"START_FLIGHT" = "Démarrez";
"STOP_FLIGHT" = "Arrêtez";

但是当我打电话时:

let title = NSLocalizedString("STOP_FLIGHT", comment: "Stop Flight")
StartandStop.setTitle(title, forState: UIControlState.Normal)

按钮的标题更改为 STOP_FLIGHT,我打算将标题更改为 Arrêtez。我做错了什么?

最佳答案

我想通了:)

你必须指定 tableName(在大多数情况下是 Storyboard 名称),就像这些一样,都可以

    let titleStr = NSBundle.mainBundle().localizedStringForKey("STOP_FLIGHT", value: "default stop flight", table:"Main")
let anotherTitle = NSLocalizedString("STOP_FLIGHT", tableName: "Main", comment: "Comment")

关于iOS 本地化问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28006185/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com