我使用领域与一些api我希望达到行为当我删除服务器上的对象时,它应该在应用程序上自动删除。 使用CoreData有一个RestKit框架可以完成这个技巧,领域有类似的东西。我试过ObjectMapper和Alamofire没有成功。
答案 0 :(得分:1)
您需要注意删除对象。这可能如下所示:
Alamofire.request(.DELETE, "http://localhost:3000/product/\(object.id).json")
.response { request, response, data, error in
// TODO: Replace through appropriate error handling
precondition(error == nil, "An error occurred \(error!)")
let realm = try! Realm()
try! realm.write {
realm.delete(object)
}
}