Con Swift 3, Dictionary
ha una keys
proprietà. keys
ha la seguente dichiarazione:
var keys: LazyMapCollection<Dictionary<Key, Value>, Key> { get }
Una raccolta contenente solo le chiavi del dizionario.
Si noti che LazyMapCollection
che può facilmente essere mappati a un Array
con Array
's init(_:)
inizializzatore.
Da NSDictionary
a[String]
Il seguente AppDelegate
frammento di classe iOS mostra come ottenere una matrice di stringhe ( [String]
) usando la keys
proprietà di un 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
}
Da [String: Int]
a[String]
In un modo più generale, il seguente codice Playground mostra come ottenere una matrice di stringhe ( [String]
) usando la keys
proprietà di un dizionario con chiavi stringa e valori interi ( [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"]
Da [Int: String]
a[String]
Il seguente codice Playground mostra come ottenere una matrice di stringhe ( [String]
) usando la keys
proprietà di un dizionario con chiavi intere e valori stringa ( [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"]