Swift 3(Xcode 8 beta 6)localizedStringWithFormat

时间:2016-08-22 13:49:10

标签: ios localization swift3 xcode8-beta6

有没有更好的方法来获取本地化格式并用Xcode 8 Swift 3替换字符串?我是否需要使用NSString,并在NSString和String之间来回转换?

let localizedDue = NSString.localizedStringWithFormat(NSLocalizedString("Due: %@", comment: "due date label with date") as NSString, formattedDate) as String

1 个答案:

答案 0 :(得分:8)

我可能会遗漏一些东西,但在Swift 3中,String有一个类型方法localizedStringWithFormat,您可以这样写:

let localizedDue = String.localizedStringWithFormat(NSLocalizedString("Due: %@", comment: "due date label with date"), formattedDate)

如果这不是您要求的,请更新您的帖子。