尝试用swift字典中的键字符串填充数组。
var componentArray: [String]
let dict = NSDictionary(contentsOfFile: NSBundle.mainBundle().pathForResource("Components", ofType: "plist")!)
componentArray = dict.allKeys
这将返回一个错误:'AnyObject'与string不相同
也试过
componentArray = dict.allKeys as String
but get: 'String'不能转换为[String]