0
バックグラウンドで私のアプリを起動するリモートプッシュ通知(VoIP PushKit)を受け取ったときに私はトリガーローカル通知を試みています。iOS 10アプリがバックグラウンドのときにローカル通知をトリガーする方法はありますか?
私のローカル通知はUNUserNotificationCenterの保留中の通知の配列で表示されます。
[[UNUserNotificationCenter currentNotificationCenter] getPendingNotificationRequestsWithCompletionHandler:
^(NSArray<UNNotificationRequest *> * _Nonnull requests)
{
NSLog(@"Local notifications: %@",requests);
}];
"<UNNotificationRequest: 0x17162e500; identifier: 2A364020-3BA2-481B-9255-16EBBF2F4484, content: <UNNotificationContent: 0x1708e8080; title:test, subtitle: (null), body: test2, categoryIdentifier: missed, launchImageName: , peopleIdentifiers: (\n), threadIdentifier: , attachments: (\n), badge: 1, sound: <UNNotificationSound: 0x1704bfe60>, hasDefaultAction: YES, shouldAddToNotificationsList: YES, shouldAlwaysAlertWhileAppIsForeground: YES, shouldLockDevice: YES, shouldPauseMedia: NO, isSnoozeable: NO, fromSnooze: NO, darwinNotificationName: (null), darwinSnoozedNotificationName: (null), trigger: <UNTimeIntervalNotificationTrigger: 0x171624260; repeats: NO, timeInterval: 5.000000>>"
ただし、5秒後には表示されません。 私はUNTimeIntervalNotificationTriggerを使用します。
アプリケーションがフォアグラウンドにあるときにローカル通知を正常に呼び出すことができました。私はボタンを押すことによってそれを呼び出すことによってトリガーのために同じ機能を使用します。
iOSアプリがバックグラウンドのときにローカル通知をトリガーする方法はありますか?