I have a simple Dictionary which is defined like:
var dict : NSDictionary = [ 1 : \"abc\", 2 : \"cde\"]
Now I want to add an element into t
you can add using the following way and change Dictionary to NSMutableDictionary
Dictionary
NSMutableDictionary
dict["key"] = "value"