gpt4 book ai didi

ios - 如果 Swift 中存在 NSUserDefault,则尝试更新 CLLocation

转载 作者:可可西里 更新时间:2023-11-01 00:36:13 25 4
gpt4 key购买 nike

最初我试图将 CLLocation 保存为 NSUserDefault 值,然后将其作为 CKRecord 存储在 CLoudkit 中,但出现错误:“defaults.setObject(locationRecord.recordID, forKey: "locationRecordID")”原因是“尝试将非属性列表对象设置为键 locationRecordID 的 NSUserDefaults/CFPreferences 值”。所以现在我试图将纬度和经度保存为默认值并替换 Cloudkit 中的旧位置。我目前在“publicDB.fetchRecordWithID((defaults.objectForKey("Location") as!CKRecordID),completionHandler:”行收到“Thread 1 SIGABRT”错误原因是“无法将类型‘__NSCFDictionary’ (0x1a1bec968) 的值转换为‘CKRecordID’。

func locationManager(manager: CLLocationManager, didUpdateLocations locations: [CLLocation])
{
let location = locations.last
self.loc1 = location!
let center = CLLocationCoordinate2D(latitude: location!.coordinate.latitude, longitude: location!.coordinate.longitude)
let region = MKCoordinateRegion(center: center, span: MKCoordinateSpan(latitudeDelta: 0.004, longitudeDelta: 0.004))
self.mapView.setRegion(region, animated: true)
self.locationManager.stopUpdatingLocation()
self.locationManager.startMonitoringSignificantLocationChanges()

self.getRecordToUpdate(locations)

let lat: CLLocationDegrees = center.latitude
self.lat1 = lat
let long: CLLocationDegrees = center.longitude
self.long1 = long

locationRecord.setObject(location, forKey: "location")
let publicData = CKContainer.defaultContainer().publicCloudDatabase
publicData.saveRecord(locationRecord) { record, error in
}
if error == nil
{
print("Location saved")
}
}

func getRecordToUpdate(locations:[CLLocation])
{
let defaults = NSUserDefaults.standardUserDefaults()
var locationRecord:CKRecord

if defaults.objectForKey("Location") == nil{
locationRecord = CKRecord(recordType: "location")
let locationDict = ["lat": lat1, "lng": long1]//
defaults.setObject(locationDict, forKey: "Location")//
self.updateLocationRecord(locationRecord, locations: locations)
print("new")
}else{
let publicDB = CKContainer.defaultContainer().publicCloudDatabase
publicDB.fetchRecordWithID((defaults.objectForKey("Location") as! CKRecordID),completionHandler: {
(record, error) in
if error == nil{
self.updateLocationRecord(record!, locations: locations)
print("fetched record")
}else{
print("Error fetching previous record")
}
})
}
}
func updateLocationRecord(locationRecord:CKRecord, locations:[CLLocation])
{
let location = locations.last
locationRecord.setObject(location, forKey: "location")
let publicData = CKContainer.defaultContainer().publicCloudDatabase
publicData.saveRecord(locationRecord) { record, error in
}
if error == nil
{
print("Location saved")
}
}

最佳答案

试试这个

您可以将 NSData 保存到 NSUserDefaults。所以你需要做的就是将 CLLocation 对象转换为 NSData,如下所示:

// saving your CLLocation object
let locationData = NSKeyedArchiver.archivedDataWithRootObject(your location here)
NSUserDefaults.standardUserDefaults().setObject(locationData, forKey: "locationData")

// loading it
if let loadedData = NSUserDefaults.standardUserDefaults().dataForKey("locationData") {
if let loadedLocation = NSKeyedUnarchiver.unarchiveObjectWithData(loadedData) as? CLLocation {
println(loadedLocation.coordinate.latitude)
println(loadedLocation.coordinate.longitude)
}
}

关于ios - 如果 Swift 中存在 NSUserDefault,则尝试更新 CLLocation,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39604344/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com