1

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"
            ]
user2636197
  • 3,982
  • 9
  • 48
  • 69

1 Answers1

4

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?

Community
  • 1
  • 1
Jonah Starling
  • 539
  • 6
  • 20