Reputation: 4122
I have an array that looks like this:
var parameters: [String: AnyObject] = [
"title": "something",
"type": "1"
]
How do I append something like this:
"someNewField": "someValue"
So that the array would end up like:
parameters: [String: AnyObject] = [
"title": "something",
"type": "1",
"someNewField": "someValue"
]
Upvotes: 1
Views: 324
Reputation: 543
This is a dictionary not an array. To append something new to it you would do something like this:
parameters["someNewField"] = "someValue"
Here you can find more documentation on arrays, dictionaries, and their differences:
Also this is a possible duplicate of:
How to append elements into dictionary in swift?
Upvotes: 4