Ios8在plist上的MutableDictionary中添加键

时间:2014-11-30 16:28:12

标签: swift

我想在MutableDictionary中保存更多按钮,我尝试这样:

var button = Dictionary<String, String>()

@IBAction func Button(sender: AnyObject) {
  button["\(string)"] = "\(countButton)"
}

我的plist文件:

<key>button</key>
<dict>
    <key>Example</key>
    <string>9</string>
</dict>

未添加该值,我只获得所形成值的更新。

0 个答案:

没有答案