Ib Objective-CNSLocalizedString
是一个宏定义在NSBundle.h
:
#define NSLocalizedString(key, comment) \
[[NSBundle mainBundle] localizedStringForKey:(key) value:@"" table:nil]
在 Swift 中,它是一个函数:
func NSLocalizedString(key: String, tableName: String? = default, bundle: NSBundle = default, value: String = default, #comment: String) -> String
您可以将其用作:
let title = NSLocalizedString("Sign Up", tableName: nil, bundle: NSBundle.mainBundle(), value: "", comment: "")
let formDescriptor = XLFormDescriptor(title: title)
或者您可以使用从宏调用的等效代码:
let title = NSBundle.mainBundle().localizedStringForKey("Sign Up", value: nil, table: nil)
let formDescriptor = XLFormDescriptor(title: title)
另一个好主意是向String
类添加一个很好的方法来获得很好的语法。这是这个答案的一个例子:
extension String {
var localized: String {
return NSLocalizedString(self, tableName: nil, bundle: NSBundle.mainBundle(), value: "", comment: "")
}
}
然后像这样使用它:
let formDescriptor = XLFormDescriptor(title: "Sign Up".localized)