Com Swift 3, Dictionary
tem uma keys
propriedade. keys
tem a seguinte declaração:
var keys: LazyMapCollection<Dictionary<Key, Value>, Key> { get }
Uma coleção que contém apenas as chaves do dicionário.
Note que LazyMapCollection
que pode facilmente ser mapeado para um Array
com Array
's init(_:)
initializer.
De NSDictionary
até[String]
O seguinte AppDelegate
snippet de classe do iOS mostra como obter uma matriz de strings ( [String]
) usando a keys
propriedade de NSDictionary
:
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
let string = Bundle.main.path(forResource: "Components", ofType: "plist")!
if let dict = NSDictionary(contentsOfFile: string) as? [String : Int] {
let lazyMapCollection = dict.keys
let componentArray = Array(lazyMapCollection)
print(componentArray)
// prints: ["Car", "Boat"]
}
return true
}
De [String: Int]
até[String]
De uma maneira mais geral, o seguinte código do Playground mostra como obter uma matriz de strings ( [String]
) usando a keys
propriedade de um dicionário com chaves de string e valores inteiros ( [String: Int]
):
let dictionary = ["Gabrielle": 49, "Bree": 32, "Susan": 12, "Lynette": 7]
let lazyMapCollection = dictionary.keys
let stringArray = Array(lazyMapCollection)
print(stringArray)
// prints: ["Bree", "Susan", "Lynette", "Gabrielle"]
De [Int: String]
até[String]
O seguinte código do Playground mostra como obter uma matriz de strings ( [String]
) usando a keys
propriedade de um dicionário com chaves inteiras e valores de string ( [Int: String]
):
let dictionary = [49: "Gabrielle", 32: "Bree", 12: "Susan", 7: "Lynette"]
let lazyMapCollection = dictionary.keys
let stringArray = Array(lazyMapCollection.map { String($0) })
// let stringArray = Array(lazyMapCollection).map { String($0) } // also works
print(stringArray)
// prints: ["32", "12", "7", "49"]