신속한 사전 키 배열 신속하게 사전의 키에서 문자열로 배열을 채우려 고합니다. var componentArray: [String] let dict = NSDictionary(contentsOfFile: NSBundle.mainBundle().pathForResource("Components", ofType: "plist")!) componentArray = dict.allKeys 'AnyObject'가 string과 동일하지 않은 오류를 리턴합니다. 또한 시도 componentArray = dict.allKeys as String get : 'String'은 [String] (으)로 변환 할 수 없습니다 스위프트 3 & 스위프트 4 componentArray = Array(dict.keys) // for..