func NSLocalizedString(key: String, tableName: String? = default, bundle: NSBundle = default, value: String = default, #comment: String) -> String
default
是什么意思?
答案 0 :(得分:2)
这里的default
字只是真实默认值文档的一个放置位置。
func NSLocalizedString(key: String, tableName: String? = default, bundle: NSBundle = default, value: String = default, #comment: String) -> String { ... }
可能会成为
func NSLocalizedString(key: String, tableName: String? = "myDefaultTableName", bundle: NSBundle = NSBundle.mainBundle(), value: String = "myDefaultValue", #comment: String) -> String { ... }