Swift 3ではDictionary
、keys
プロパティがあります。keys
次の宣言があります:
var keys: LazyMapCollection<Dictionary<Key, Value>, Key> { get }
辞書のキーのみを含むコレクション。
これLazyMapCollection
はArray
with Array
のinit(_:)
イニシャライザに簡単にマッピングできることに注意してください。
から NSDictionary
へ[String]
次のiOS AppDelegate
クラススニペットは、からプロパティを[String]
使用して文字列の配列()を取得する方法を示しています。keys
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
}
から[String: Int]
へ[String]
より一般的な方法で、次のPlaygroundコードは、文字列キーと整数値()を持つディクショナリのプロパティを[String]
使用して文字列の配列()を取得する方法を示しています。keys
[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"]
から[Int: String]
へ[String]
次のPlaygroundコードは、整数キーと文字列値()を持つディクショナリのプロパティを[String]
使用して文字列の配列()を取得する方法を示しています。keys
[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"]