尝试使用字典中的键快速填充字符串。
var componentArray: [String] let dict = NSDictionary(contentsOfFile: NSBundle.mainBundle().pathForResource("Components", ofType: "plist")!) componentArray = dict.allKeys
这将返回错误:’AnyObject’与字符串不同
也试过了
componentArray = dict.allKeys as String
但得到:’String’不能转换为[String]
Swift 3和Swift 4
componentArray = Array(dict.keys) // for Dictionary componentArray = dict.allKeys // for NSDictionary