移动到其他城市时触发通知



我想在每次当前城市基于didUpdateLocations:发生变化时触发通知

func locationManager(_ manager: CLLocationManager,  didUpdateLocations locations: [CLLocation]) {
let lastLocation = locations.last!
updateLocation(location: lastLocation)
}

因此,在这里,我将比较城市是否发生了变化,并在此基础上发送推送通知。我怎么能这么做?

func updateLocation(location: CLLocation) {
fetchCityAndCountry(from: location) { city, country, error in
guard let city = city, let country = country, error == nil else { return }
self.locationLabel.text = city + ", " + country
if(city !== previousCity){
//Send push notification
}
}
}

我知道我可以根据位置和范围触发它,但这对我来说还不够具体

考虑使用反向地理编码api,它将CLLocation解析为CLPlacemark,其中包含您喜欢的语言(本地(的国家名称、城市名称甚至街道名称。所以基本上,你的代码会是这样的。

func updateLocation(location: CLLocation) {
CLGeocoder().reverseGeocodeLocation(location, completionHandler: {(placemarks, error)-> Void in
if error != nil {
return
}
if placemarks!.count > 0 {
let placemark = placemarks![0]
print("Address: (placemark.name!) (placemark.locality!), (placemark.administrativeArea!) (placemark.postalCode!)")
if placemark.locality! !== previousCity) {
// Send push notification
}
} else {
print("No placemarks found.")
}
})
}

编辑2

至于发送通知,不要使用UNLocationNotificationTrigger,只需使用"正常触发器"-UNTimeIntervalNotificationTrigger

let notification = UNMutableNotificationContent()
notification.title = "Notification"
notification.subtitle = "Subtitle"
notification.body = "body"
let notificationTrigger = UNTimeIntervalNotificationTrigger(timeInterval: 0, repeats: false)
let request = UNNotificationRequest(identifier: "notification1", content: notification, trigger: notificationTrigger)
UNUserNotificationCenter.current().add(request, withCompletionHandler: nil)

编辑1

你不想经常调用地理编码,所以你应该检查当前位置和最后一个"检查点"之间的距离,只有当它足够大时,你才会调用地理编码器,否则这将是一种浪费。

顺便说一句,通知将从手机本身发送,不涉及服务器或APNS,这被称为本地通知,而不是推送通知。

最新更新