4

在 iOS 10 中,当应用程序处于前台时,可以使用UNNotificationPresentationOptions来显示通知,

但我找不到任何有关如何使用此功能的示例,请提出一些有关如何实现此功能的想法

4

2 回答 2

10

我已经通过

在我的 viewController 中添加以下代码

extension UIViewController: UNUserNotificationCenterDelegate {

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

    public func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void) {
        print("Do what ever you want")

    }

}

在我关于 didFinishLaunchingWithOptions 的 Appdelegate 中

UNUserNotificationCenter.current().requestAuthorization(options: [.alert,.sound]) {(accepted, error) in

            if !accepted {   
                print("Notification access denied")
            }            
        }
于 2016-10-05T08:45:46.520 回答
0

新的 iOS 10 UNUserNotificationCenterDelegate现在具有一组用于处理远程和本地通知的方法。

UNUserNotificationCenterDelegate协议:

userNotificationCenter(_:didReceive:withCompletionHandler:)

调用以让您的应用知道用户为给定通知选择了哪个操作。

userNotificationCenter(_:willPresent:withCompletionHandler:)

向在前台运行的应用程序发送通知。

两种方法。更好的是,现在它们被转移到自己的协议中,iOS 10

UNUserNotificationCenterDelegate因此,这将有助于清理现有的UIApplicationDelegate,因为它能够将所有旧的通知处理代码重构为它自己的闪亮的、新的、有凝聚力的协议。

这是一个例子:

extension NotificationManager: UNUserNotificationCenterDelegate {

func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: () -> Void) {

    switch response.actionIdentifier {

    // NotificationActions is a custom String enum I've defined
    case NotificationActions.HighFive.rawValue:
        print("High Five Delivered!")
    default: break
    }
}

func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: (UNNotificationPresentationOptions) -> Void) {

    // Delivers a notification to an app running in the foreground.
}
}
于 2016-10-05T08:06:31.543 回答