如何知道应用收到通知的时间以及用户在iOS

时间:2018-03-02 08:15:40

标签: ios push-notification notifications apple-push-notifications

我知道有很多关于这个主题的文章,但我找不到合适的答案。

有没有办法知道用户何时收到远程通知以及用户何时点击了iOS 8上的远程通知。 我想知道这个,因为当我收到它时我想保存它,当用户点击它时我想打开一些视图。

我找到了这个答案https://stackoverflow.com/a/16393957/1241217,但问题是当用户在应用中并打开通知中心并点击其中一个时,该应用不会处于非活动状态而不会在后台运行。

我也找到了这个答案https://stackoverflow.com/a/12937568/1241217,但我知道这只是在应用程序被杀死并从新启动时才会运行。

我也不想这样做https://stackoverflow.com/a/32079458/1241217,因为我需要检测收到通知的时间。

那么有没有办法知道用户是否只点击了通知。据我所知,它必须在didReceiveRemoteNotification中完成,但我不知道如何将它们分开。我需要在iOS 10之前得到答案,因为应用目标是iOS 8。

我的解决方案:

正如我在Shabbir Ahmad的评论中所写,我的解决方案是记住应用程序确实生效的日期和收到通知的日期。如果这个日期之间的差异是一秒或更短,我接受了当用户点击通知时。

2 个答案:

答案 0 :(得分:2)

您必须实施UNUserNotificationCenterDelegate及其方法 当用户点按通知时会调用userNotificationCenter(_:willPresent:withCompletionHandler:)userNotificationCenter(_:didReceive:withCompletionHandler:)。在willPresent:中,您必须使用一个选项调用completionHandler,该选项可指示在应用处于前台时通知到达时应发生的情况。

注册这样的代表很容易:

UNUserNotificationCenter.current().delegate = self

所以例如:

func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
    completionHandler(UNNotificationPresentationOptions.alert)
}

func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
    let userInfo = response.notification.request.content.userInfo
    if let userInfo = userInfo as? [String: Any] {
        // TODO: implement your logic
        // just don't forget to dispatch UI stuff on main thread
    }
}

您可以通过AppDelegate实现该委托,也可以通过任何NSObject来实现,我会选择后者以尽可能保持AppDelegate

P.S。:当然,这假设您已被用户授予权限(UNUserNotificationCenter.current().requestAuthorization(options:completionHandler:))并且您已注册接受通知(UIApplication.shared.registerForRemoteNotifications())。

Scheduling and Handling Local Notifications响应通知传递部分阅读更多信息 - 虽然该部分是关于本地通知的,但对于远程通知则完全相同(它们由两者处理同一个代表)。

答案 1 :(得分:2)

当您在ios 10之前点击后台模式中的通知时以及当您处于前台时,在这两种情况下您的下方都会调用,

func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable: Any],
                     fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void)

所以你可以区分行为, 首先,在AppDelegate类中分配一个布尔变量,如下所示:

class AppDelegate: UIResponder, UIApplicationDelegate {

  var window: UIWindow?
  var isUserTapOnNotification = false

之后在

中制作true isUserTapOnNotification
func applicationWillEnterForeground(_ application: UIApplication) {
        isUserTapOnNotification = tue
    }

因为当您点按通知栏时,您的应用会进入前台,applicationWillEnterForeground会先拨打电话, 之后,您的didReceiveRemoteNotification会致电:

func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable: Any],
                     fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {

  if #available(iOS 10.0, *) {
//do nothing

}else { //<ios 10
 if isUserTapOnNotification == true {//when app is in background and user tap on notification bar
  //do action whatever you want
} else { //when user is in foreground and notification came,
  //before ios10,notification bar not display in foreground mode,So you can show popup by using userInfo
}

}

之后applicationDidBecomeActive将会调用,您将isUserTapOnNotification重置为false,如下所示:

func applicationDidBecomeActive(_ application: UIApplication) {
       isUserTapOnNotification = false
    }

我希望这个答案可以帮到你。