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
Swift 5 happy coding
var tempDicData = NSMutableDictionary() for temp in answerList { tempDicData.setValue("your value", forKey: "your key") }