7

通知からアクションを実装しようとしています。これまでのところ、適切なデリゲート機能をトリガーできますが、アプリをタップしてもフォアグラウンドにはなりません。

関連コード:

@available(iOS 10.0, *)
func registerCategory() -> Void{
    print("register category")
    let callNow = UNNotificationAction(identifier: "call", title: "Call now", options: [])
    let clear = UNNotificationAction(identifier: "clear", title: "Clear", options: [])
    let category : UNNotificationCategory = UNNotificationCategory.init(identifier: "IDENT123", actions: [callNow, clear], intentIdentifiers: [], options: [])

    let center = UNUserNotificationCenter.currentNotificationCenter()
    center.setNotificationCategories([category])
}

@available(iOS 10.0, *)
func scheduleNotification(event : String, interval: NSTimeInterval) {

    print("schedule ", event)

    let content = UNMutableNotificationContent()

    content.title = event
    content.body = "body"
    content.categoryIdentifier = "CALLINNOTIFICATION"
    let trigger = UNTimeIntervalNotificationTrigger.init(timeInterval: interval, repeats: false)
    let identifier = "id_"+event
    let request = UNNotificationRequest.init(identifier: identifier, content: content, trigger: trigger)

    let center = UNUserNotificationCenter.currentNotificationCenter()
    center.addNotificationRequest(request) { (error) in

    }
}

@available(iOS 10.0, *)
func userNotificationCenter(center: UNUserNotificationCenter, willPresentNotification notification: UNNotification, withCompletionHandler completionHandler: (UNNotificationPresentationOptions) -> Void) {

    print("willPresent")
    completionHandler([.Badge, .Alert, .Sound])
}

@available(iOS 10.0, *)
func userNotificationCenter(center: UNUserNotificationCenter, didReceiveNotificationResponse response: UNNotificationResponse, withCompletionHandler completionHandler: () -> Void) {

    let notification: UNNotification = response.notification
    let UUID = notification.request.content.userInfo["UUID"] as! String

    switch (response.actionIdentifier) {
    case "COMPLETE":

        UNUserNotificationCenter.currentNotificationCenter().removeDeliveredNotificationsWithIdentifiers([UUID])

    case "CALLIN":

        let call = Call()

        CalendarController.sharedInstance.fetchMeetingByUUID(UUID, completion: { (thisMeeting) -> Void in
            if(!CallIn.Yield(thisMeeting).ConferenceCallNumber.containsString("None")){
                call._call(thisMeeting)
            }else{
                //will open detail view, in case that no number were detected
                NSNotificationCenter.defaultCenter().postNotificationName("OpenDetailViewOfMeeting", object: self, userInfo: ["UUID":UUID])
            }
        })
        UNUserNotificationCenter.currentNotificationCenter().removeDeliveredNotificationsWithIdentifiers([UUID])
    default: // switch statements must be exhaustive - this condition should never be met
        log.error("Error: unexpected notification action identifier: \(UUID)")
    }

    completionHandler()
}

ブレークポイントでデリゲート関数 didReceiveNotificationResponse() をヒットすることができ、そこに配置したいくつかのアクションを実行しますが、期待される方法ではありません (デバイス呼び出しを開始する必要があり、代わりに通知リストを閉じるだけです。何も起こりませんが、アプリを手動で再度開くと、通知からアプリを開く権限がないかのように通話が開始されます)。

4

1 に答える 1

8

理由は自分で見つけたので、これは将来誰かに役立つかもしれません。答えは非常に単純であることが判明しました。通知のアクションを作成する場合、次のパラメータがあります: options. カテゴリを登録するときは、次のように .Foreground または .Destructive のいずれかの方法で配置する必要があります。

func reisterCategory () {
    let callNow = UNNotificationAction(identifier: NotificationActions.callNow.rawValue, title: "Call now", options: UNNotificationActionOptions.Foreground)
    let clear = UNNotificationAction(identifier: NotificationActions.clear.rawValue, title: "Clear", options: UNNotificationActionOptions.Destructive)
    let category = UNNotificationCategory.init(identifier: "NOTIFICATION", actions: [callNow, clear], intentIdentifiers: [], options: [])
    let center = UNUserNotificationCenter.currentNotificationCenter()
    center.setNotificationCategories([category])
}
于 2016-10-04T09:25:40.040 に答える