Mention what are the collection types available in Swift?
Answer Posted / iosraj
In Swift, collection types come in two varieties Array and Dictionary
Array: You can create an Array of a single type or an array with multiple types. Swift usually prefers the former one
Example for single type array is,
Var cardName : [String] = [ “Robert” , “Lisa” , “Kevin”]
// Swift can infer [String] so we can also write it as:
Var cardNames = [ “Robert”, “Lisa”, “Kevin”] // inferred as [String]
To add an array you need to use the subscript println(CardNames[0])
Dictionary: It is similar to a Hash table as in other programming language. A dictionary enables you to store key-value pairs and access the value by providing the key
var cards = [ “Robert”: 22, “Lisa” : 24, and “Kevin”: 26]
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Who created swift?
Is swift thread safe?
What are the advantages of using swift?
Is swift similar to c?
In swift, what type of object are basic data types?
Is ios written in swift?
How does swift achieve multiple inheritance?
How to pass the data between view controllers?
Explain mvc structure.
What type of literals does swift language have?
What are classes in swift?
Explain swift vs objective-c.
How would you define variables and constants in swift programming language?
Mention what is the difference between Swift and ‘Objective-C’ language?
How to write a multiple line comment in swift?