user2636197
user2636197

Reputation: 4122

swift ios append elements to array

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

Answers (1)

Jonah Starling
Jonah Starling

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:

https://developer.apple.com/library/ios/documentation/Swift/Conceptual/Swift_Programming_Language/CollectionTypes.html

Also this is a possible duplicate of:

How to append elements into dictionary in swift?

Upvotes: 4

Related Questions