Changes

Working with Array and Dictionary Collections in Swift

31 bytes added, 15:49, 23 December 2015
Swift Dictionary Collections
<google>BUY_IOS8</google>
== Swift Dictionary Collections ==
<google>ADSDAQBOX_FLOW</google>
String dictionaries allow data to be stored and managed in the form of key-value pairs. Dictionaries fulfill a similar purpose to arrays, except each item stored in the dictionary has associated with it a unique key (to be precise, the key is unique to the particular dictionary object) which can be used to reference and access the corresponding value. Currently only String, Int, Double and Bool data types are suitable for use as keys within a Swift dictionary.