NSLocalizedString 是 Apple 提供的一种 字符串本地化 方法,主要用于 iOS/macOS/watchOS/tvOS 应用的本地化。它的作用是让应用根据用户的系统语言自动显示不同的语言文本,而不需要硬编码字符串。
NSLocalizedString 的基本用法
let localizedText = NSLocalizedString("Hello", comment: "A greeting message")
print(localizedText) // 可能输出 "Hello" 或 "你好"(取决于语言设置)
NSLocalizedString(“Hello”, comment: “A greeting message”)
“Hello” 是字符串键(Key),用于在 Localizable.strings 文件中查找对应翻译。
comment 用于提供额外说明,方便翻译人员理解其用途(不会影响最终显示的内容)。
使用场景
在SwiftUI中默认Text视图本地化,也可以通过LocalizedStringKey实现视图内容本地化的类型,但是如果需要在UserNotifications中实现本地化,则只能使用String来设置通知的内容。
因此,需要使用NSLocalizedString来实现本地化,并传递本地化的字符作为String类型。
// 设置调度本地通知
func scheduleLocalNotification() {
let content = UNMutableNotificationContent()
content.title = NSLocalizedString("Savings reminder", comment: "Title of the savings reminder notification")
content.body = NSLocalizedString("Accumulate today and reap tomorrow.", comment: "Body text of the savings reminder notification")
content.sound = .default
}
这样,当用户的 iPhone 语言设置为 英文 时,通知会显示:
Title: Savings reminder
Body: Accumulate today and reap tomorrow.
而如果是 简体中文,则会显示:
Title: 存钱提醒
Body: 今天的积累,明天的收获。
本地化文件则需要在Localizable.strings文件中进行配置,这里不做多余的讲解。
NSLocalizedString和LocalizedStringKey
1、适用范围:NSLocalizedString用于UIKit和Foundation(通知、警告框等),LocalizedStringKey则用于SwiftUI(如Text(“Hello”))
2、数据类型:NSLocalizedString数据类型为String,LocalizedStringKey数据类型为LocalizedStringKey。
3、适用场景:NSLocalizedString通常用于通知、日志和网络请求等场景,而LocalizedStringKey则用于SwiftUI视图中的文本。
总结
NSLocalizedString 用于 UIKit 和 Foundation(如通知、弹窗、日志等)。
LocalizedStringKey 只适用于 SwiftUI 的 Text 组件。
必须配合 Localizable.strings 文件 才能实现不同语言的自动适配。
相关文章
Xcode15本地化应用程序名称和内容:https://fangjunyu.com/2024/05/21/xcode15%e6%9c%ac%e5%9c%b0%e5%8c%96%e5%ba%94%e7%94%a8%e7%a8%8b%e5%ba%8f%e5%90%8d%e7%a7%b0%e5%92%8c%e5%86%85%e5%ae%b9/