有没有更好的方法来获取本地化格式并用Xcode 8 Swift 3替换字符串?我是否需要使用NSString,并在NSString和String之间来回转换?
let localizedDue = NSString.localizedStringWithFormat(NSLocalizedString("Due: %@", comment: "due date label with date") as NSString, formattedDate) as String
答案 0 :(得分:8)
我可能会遗漏一些东西,但在Swift 3中,String
有一个类型方法localizedStringWithFormat
,您可以这样写:
let localizedDue = String.localizedStringWithFormat(NSLocalizedString("Due: %@", comment: "due date label with date"), formattedDate)
如果这不是您要求的,请更新您的帖子。