如何实现地理围栏触发的本地通知?
How to implement geofence triggered local notifications?
我已经创建了一个简单的基于地理围栏的应用程序来监控人们进出地理围栏的移动,我正在尝试发送有关这些事件的通知,但似乎无法正确实施。
我非常感谢一些解释示例代码,这些代码将放入视图控制器和应用程序委托中。
P.s 我对 swift 的了解有些有限,但我了解此应用程序所需的大部分内容。
感谢您的帮助!
编辑:
这是我创建通知的函数,我认为是正确的。
func scheduleNotification() {
let centre = CLLocationCoordinate2DMake(51.364730, -0.189986)
let region = CLCircularRegion(center: centre, radius: 150, identifier: "SGS")
region.notifyOnEntry = true
let trigger = UNLocationNotificationTrigger(region: region, repeats: true)
let enterContent = UNMutableNotificationContent()
enterContent.title = "Enter"
enterContent.body = "Entered premesis"
enterContent.sound = UNNotificationSound.default()
let enterRequest = UNNotificationRequest(identifier: "enterNotification", content: enterContent, trigger: trigger)
UNUserNotificationCenter.current().removeAllPendingNotificationRequests()
UNUserNotificationCenter.current().add(enterRequest) {(error) in
if let error = error {
print("Error: \(error)")
}
}
}
我将其添加到 didFinishLaunchingWithOptions:
UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .sound, .badge]) {(accepted, error) in
if !accepted {
print("Notification access denied.")
}
}
我知道我需要调用该函数,但我不知道在哪里调用它以便在离开地理围栏时调用它。我也不确定如何从视图控制器中调用它,因为它在 AppDelegate 中。
对不起,如果我是愚蠢的,但感谢您的帮助!
您需要实施位置管理器的 didEnterRegion and didExitRegion 委托方法。在这些方法的实现中,您将 post 本地通知。
如果您已经这样做,请确保该应用程序具有适当的 posting 通知功能,并且您已在应用程序委托中为该应用程序注册了适当的通知设置。
Ray Wenderlich 在本地和远程推送通知方面做得很好tutorial on Geofencing and here's Apple's guide。
我已经创建了一个简单的基于地理围栏的应用程序来监控人们进出地理围栏的移动,我正在尝试发送有关这些事件的通知,但似乎无法正确实施。
我非常感谢一些解释示例代码,这些代码将放入视图控制器和应用程序委托中。
P.s 我对 swift 的了解有些有限,但我了解此应用程序所需的大部分内容。 感谢您的帮助!
编辑:
这是我创建通知的函数,我认为是正确的。
func scheduleNotification() {
let centre = CLLocationCoordinate2DMake(51.364730, -0.189986)
let region = CLCircularRegion(center: centre, radius: 150, identifier: "SGS")
region.notifyOnEntry = true
let trigger = UNLocationNotificationTrigger(region: region, repeats: true)
let enterContent = UNMutableNotificationContent()
enterContent.title = "Enter"
enterContent.body = "Entered premesis"
enterContent.sound = UNNotificationSound.default()
let enterRequest = UNNotificationRequest(identifier: "enterNotification", content: enterContent, trigger: trigger)
UNUserNotificationCenter.current().removeAllPendingNotificationRequests()
UNUserNotificationCenter.current().add(enterRequest) {(error) in
if let error = error {
print("Error: \(error)")
}
}
}
我将其添加到 didFinishLaunchingWithOptions:
UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .sound, .badge]) {(accepted, error) in
if !accepted {
print("Notification access denied.")
}
}
我知道我需要调用该函数,但我不知道在哪里调用它以便在离开地理围栏时调用它。我也不确定如何从视图控制器中调用它,因为它在 AppDelegate 中。
对不起,如果我是愚蠢的,但感谢您的帮助!
您需要实施位置管理器的 didEnterRegion and didExitRegion 委托方法。在这些方法的实现中,您将 post 本地通知。
如果您已经这样做,请确保该应用程序具有适当的 posting 通知功能,并且您已在应用程序委托中为该应用程序注册了适当的通知设置。
Ray Wenderlich 在本地和远程推送通知方面做得很好tutorial on Geofencing and here's Apple's guide。