UNNotification

2099 ワード

https://developer.apple.com/documentation/usernotifications/unnotification
"The data for a local or remote notification the system delivers to your app."
システムは、アプリケーションのローカルまたはリモートターゲットデータに送信されます.

Declaration

class UNNotification : NSObject

Overview

UNNotificationオブジェクトは、検出されたペイロードと、システムが検出を送信した日付を含む初期の検出要求を含む.
ノイズオブジェクトを直接作成しないでください.ノイズを処理すると、システムはノイズオブジェクトをUNUserNotificationCenterDelegateオブジェクトに転送する.UNUserNotificationCenterは、getDeliveredNotifications(completionHandler:)メソッドを使用して、システムによって渡されたプレゼンテーションのリストを保存し、これらのオブジェクトをインポートする.

See Also


Notification Requests


Scheduling a Notification Locally from Your App


ユーザーの注意が必要な場合は、アプリケーションからアプリケーションを作成またはスケジュールします.
https://developer.apple.com/documentation/usernotifications/scheduling_a_notification_locally_from_your_app
https://velog.io/@panther222128/Scheduling-a-Notification-Locally-from-Your-App

UNNotificationRequest


リクエストには、ターゲット・アプリケーションの内容が含まれ、転送条件のローカル・ターゲット・アプリケーション・アーキテクチャ行がトリガーされます.
https://developer.apple.com/documentation/usernotifications/unnotificationrequest
https://velog.io/@panther222128/UNNotificationRequest