标签: ios json swift dictionary nsdictionary
我的代码的目标是扩展Dictionary。 因为我想从JSON对象中获取一些值
这是我的代码:
var Test1 = ["a", 123] Test1.put("b", 456) -> which will be put inside the dictionary
可以实现吗?
结果如下:
功能放:
var Test2 = ["c", 555] Test2.getInt["c"] = 555
function getInt:
{{1}}