插入字典int和字符串不工作(swift4)

时间:2017-10-05 19:50:48

标签: swift dictionary struct

我正在尝试将另一个字典条目插入到结构中,但这不起作用。我试图为字典使用int和String。

 @IBAction func move(_ sender: Any) {

        Bad2.addx.insert(0:"dan", at: 0)


    }
    struct Bad2 {
        static var addx: [Int:String] = [1:"joe", 2:"fen"]

    }

1 个答案:

答案 0 :(得分:0)

这不是你如何向字典中添加键/值。你需要:

$(".item").click(function(){
 $(this).animate({"margin:0px 80px"});
});