SugarRecord如何更改某些属性并保存它

时间:2016-09-08 12:34:48

标签: ios swift core-data sugarrecord

我有一个方法可以帮助我将新对象保存到存储中:

 try! db.operation { (context, save) -> Void in
      let object: Device = try! context.new()

      object.address = self.tempDevice.address

      try! context.insert(object)
      save()
    }

但是如何修改我已使用Device

创建的SugarRecord

0 个答案:

没有答案