本地化传递给视图的字符串

发布于 2025-01-11 17:16:20 字数 807 浏览 0 评论 0原文

我正在尝试本地化传递给视图的一些文本,我有以下内容:

NavigationLink(destination: ManageConnectionsView(user: user).navigationBarTitle("", displayMode: .inline)) {
    SettingsRowsView(systemName: "greetingcard", image: "", title: "Connections")
}

我想本地化 "Connections"

我尝试过:

NavigationLink(destination: ManageConnectionsView(user: user).navigationBarTitle("", displayMode: .inline)) {
    SettingsRowsView(systemName: "greetingcard", image: "", title: LocalizedStringKey("Connections"))
}

但说: 无法将“LocalizedStringKey”类型的值转换为预期的参数类型“String”

在不创建额外变量的情况下执行此操作的正确方法是什么?

编辑:

我环顾四周发现了这个: String.localizedStringWithFormat(NSLocalizedString("Connections", comment: ""))

这是最新的解决方法还是有更简单的 SwiftUI 版本?

I'm trying to localize some text passed to a view, I have the following:

NavigationLink(destination: ManageConnectionsView(user: user).navigationBarTitle("", displayMode: .inline)) {
    SettingsRowsView(systemName: "greetingcard", image: "", title: "Connections")
}

I want to localize "Connections"

I tried:

NavigationLink(destination: ManageConnectionsView(user: user).navigationBarTitle("", displayMode: .inline)) {
    SettingsRowsView(systemName: "greetingcard", image: "", title: LocalizedStringKey("Connections"))
}

but says:
Cannot convert value of type 'LocalizedStringKey' to expected argument type 'String'

What's the correct way of doing this without creating an extra variable?

Edit:

I found this looking around:
String.localizedStringWithFormat(NSLocalizedString("Connections", comment: ""))

Is this the latest workaround or is there a simpler more SwiftUI version?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦途 2025-01-18 17:16:21

更改 SettingsRowsView 以采用 LocalizedStringKey 作为 title,而不是采用 String

Change SettingsRowsView to take a LocalizedStringKey for the title instead of taking a String.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文