作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想从我的应用程序更新我的实体(在 Swift 3 和 Xcode 8 中)。
所以我使用了核心数据模型。
这是我的 CoreDataController.swift 的代码:
// Updates a person
func update(updateLuci: LuciKit){
if let luci = getById(id: updateLuci.objectID){
luci.descrizione = updateLuci.descrizione
luci.pin_arduino = updateLuci.pin_arduino
}
}
// Gets a person by id
func getById(id: NSManagedObjectID) -> LuciKit? {
return context.object(with: id) as? LuciKit
}
在这种模式下我没有任何错误,但是如果我尝试重新启动我的应用程序我看不到更新信息。
最佳答案
试试这个我想你忘了保存上下文
func update(updateLuci: LuciKit){
if let luci = getById(id: updateLuci.objectID){
luci.descrizione = updateLuci.descrizione
luci.pin_arduino = updateLuci.pin_arduino
context.save()
}
}
关于iOS - 如何更新 CoreDataModel 实体?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43539853/
我是一名优秀的程序员,十分优秀!