快速从 Cloudkit 中删除 CKRecord
Posted
技术标签:
【中文标题】快速从 Cloudkit 中删除 CKRecord【英文标题】:Deleting CKRecord from Cloudkit in swift 【发布时间】:2016-09-06 05:27:38 【问题描述】:我正在尝试通过此功能更新用户的位置。最初它每次都保存用户的位置,但我添加了将在评论下方的代码。如何确保正在删除的记录是旧位置?
let locationRecord = CKRecord(recordType: "location")
func locationManager(manager: CLLocationManager, didUpdateLocations locations: [CLLocation])
let location = locations.last
let center = CLLocationCoordinate2D(latitude: location!.coordinate.latitude, longitude: location!.coordinate.longitude)
let region = MKCoordinateRegion(center: center, span: MKCoordinateSpan(latitudeDelta: 0.01, longitudeDelta: 0.01))
self.mapView.setRegion(region, animated: true)
self.locationManager.stopUpdatingLocation()//
locationRecord.setObject(location, forKey: "location")
let publicData = CKContainer.defaultContainer().publicCloudDatabase
publicData.saveRecord(locationRecord) record, error in
if error == nil
print("Location saved")
self.loc1 = location!
//testing code below
let operation = CKModifyRecordsOperation(recordsToSave: nil, recordIDsToDelete: [locationRecord.recordID])
operation.savePolicy = .AllKeys
operation.modifyRecordsCompletionBlock = added, deleted, error in
if error != nil
print(error)
else
print("location updated")
CKContainer.defaultContainer().publicCloudDatabase.addOperation(operation)
【问题讨论】:
为什么要添加新的 CKRecord 并删除旧的,而不是保留并更新它? 如何修改现有的? @迈克尔 通过保留对现有引用的本地引用 - 可能在 NSUserDefaults 中。如果它不存在,您知道您需要第一次保存,否则您需要获取现有记录,更新它,然后将其保存回来。在文档中的“获取现有记录”下查看 - developer.apple.com/library/ios/documentation/CloudKit/… 【参考方案1】:正如@Michael 指出的那样,最好的方法是更新现有的。执行此操作的简单方法是第一次创建记录时,将 recordID 保存为默认值。例如,
func getRecordToUpdate(locations:[CLLocation])->CKRecord?
let defaults = NSUserDefaults.standardUserDefaults()
var locationRecord:CKRecord
if defaults.objectForKey("locationRecordID") == nil
//Create a new record and save its id
locationRecord = CKRecord(recordType: "location")
defaults.setObject(locationRecord.recordID, forKey: "locationRecordID")
self.updateLocationRecord(locationRecord, locations)
else
//Fetch the already existing record
let publicDB = CKContainer.defaultContainer().publicCloudDatabase
publicDB.fetchRecordWithID((defaults.objectForKey("locationRecordID") as! CKRecordID), completionHandler
(record, error) in
if error == nil
self.updateLocationRecord(record, locations)
else
print("Error fetching previous record")
新建一个函数,
func updateLocationRecord(locationRecord:CKRecord, locations:[CLLocation])
//Put your code from "let location..." to just above the testing code
//You may want to fix the block syntax in the call to saveRecord
然后在原来的locationManager方法中,取出所有东西放
self.getRecordsToUpdate(locations)
【讨论】:
我在“updateRecord”上收到一个错误,你在哪里定义了@milesper 对不起,updateRecord 是您放置存储和保存位置信息的代码的函数 你建议我把这段代码放在哪里?它是否仍应在 updateRecord 中包含删除部分? @milesper 实际上你可能想把我写的代码放在一个函数中,该函数将一个ckrecord返回到你之前的位置。如果您需要,我可以稍后再解释。 这将非常有帮助,谢谢。我是服务器新手。 @milesper以上是关于快速从 Cloudkit 中删除 CKRecord的主要内容,如果未能解决你的问题,请参考以下文章
从 CloudKit 中的 CKRecord.Reference 获取价值
无法从 CloudKit 通知信息和用户信息结构中获取 CKRecord.ID