UNUserNotificationCenter関数は、クリックしても呼び出されませんアクションボタンアプリがアクティブでない場合(バックグラウンドでも終了した場合でも)、3Dタッチ後に通知でチャットします。 Xcodeで「名前でプロセスにアタッチ」を使用して、アプリが終了したときにアプリをデバッグしました。コードは次のとおりです。
import UIKit
import Mixpanel
import UserNotifications
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterDelegate {
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
//setup mixpanel
self.handlePushNotificationWithUserInfo(launchOptions: launchOptions)
//ask for Push notification perms
return true
}
通知ポップアップ(MixPanelから送信)が最初に呼び出されると、
電話1:
func handlePushNotificationWithUserInfo(launchOptions: [NSObject: AnyObject]?) {
//Handle PushNotification when app is opened
}
それからここに行きます、
電話2:
//register for notification
func application(_ application: UIApplication, didRegister notificationSettings: UIUserNotificationSettings) {
if #available(iOS 10.0, *) {
let center = UNUserNotificationCenter.current()
center.requestAuthorization(options: [.alert, .sound]) { (granted, error) in
// Enable or disable features based on authorization.
}
center.delegate = self
let actionChat = UNNotificationAction(identifier: Constants.ActionType.CHAT.rawValue, title: "Chat", options: [.foreground])
let categoryOptions = UNNotificationCategoryOptions(rawValue: 0)
let customerSupportCategory = UNNotificationCategory(identifier: Constants.NotificationType.CUSTOMER_SUPPORT.rawValue, actions: [actionChat], intentIdentifiers: [], options: categoryOptions)
center.setNotificationCategories([customerSupportCategory])
}
application.registerForRemoteNotifications()
}
電話3:
// remote notification
func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
....Some Code....
}
ただし、以下の関数は呼び出されません。しかし、アプリがバックグラウンドで実行されている場合、以下の関数が呼び出され、すべてが正常に機能します。それ以外の場合、アプリはフォアグラウンドになり、チャットしますその後はしません。
// action buttons in enhanced Notification
@available(iOS 10, *)
func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: () -> Void) {
guard let action = Constants.ActionType(rawValue: response.actionIdentifier) else {
completionHandler()
return
}
switch action {
case .CHAT:
_ = self.handleRemoteUrl(NSURL(string: "chat") as? URL)
default:
_ = self.handleRemoteUrl(NSURL(string: "chat") as? URL)
}
completionHandler()
}
@available(iOS 10.0, *)
func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: (UNNotificationPresentationOptions) -> Void) {
completionHandler([.alert, .sound])
}
}
この関数は、iOS 10でuserNotificationCenter()よりも減価償却されているために呼び出されることはありません。これも説明してください。
func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [NSObject : AnyObject]) {
....Some Code....
}
デバッグデバイスとしてiPhone 6s iOS 10を使用しています。XCode 8 beta-3
私自身の実験から、Swift 3&Xcode8でローカル通知を受信するのは次のとおりです。
適合性
UNUserNotificationCenterDelegate
に準拠
class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterDelegate { .... }
通知センターの代理人として登録します。
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
let center = UNUserNotificationCenter.current()
center.delegate = self
return true
}
デリゲートメソッド
見逃した通知に応答する(例:通知が送信されたときにアプリを表示しているユーザー)
func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: (UNNotificationPresentationOptions) -> Void) {
print(notification.request.content.userInfo)
}
アクション通知に応答する(例:ユーザーが開いた通知)
func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: () -> Void) {
print(response.notification.request.content.userInfo)
}
Swift3.1アップデート
UNUserNotificationCenterDelegateに準拠
通知センターの代理人として登録します。
UNUserNotificationCenter.current().delegate = self
public func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
print(response.notification.request.content.categoryIdentifier)
}
public func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
print(notification.request.content.categoryIdentifier)
}
アプリが実行されていないか、ユーザーによって強制終了され、通知が受信された場合、そのようなシナリオでは、didFinishLaunchingWithOptionsで処理し、通知を介してアプリが開かれているかどうかを確認し、適切に動作する必要があります。
//通知から起動されたかどうかを確認します
if let notification = launchOptions?[UIApplicationLaunchOptionsRemoteNotificationKey] as? [String: AnyObject] {
notificationReceived(notification)
}