https://developer.apple.com/documentation/pushkit/pkpushcredentials
"An object that encapsulates the device token you use to deliver push notifications to your app."
앱에 푸시 노티피케이션 전달을 위해 사용하는 기기 토큰을 캡슐화하는 객체입니다.
class PKPushCredentials : NSObject
앱의 푸시 타입을 등록할 때 PushKit
은 앱이 지원하는 각 타입에 대한 PKPushCredentials
객체를 생성하고, 이 객체를 딜리게이트의 pushRegistry(_:didUpdate:for:)
메소드에 전달합니다. PKPushCredentials
객체를 직접 생성하지 않아야 합니다.
앱이 지원할 PushKit 노티피케이션의 타입을 선언하고, 이러한 노티피케이션에 응답할 객체를 설정합니다.
https://developer.apple.com/documentation/pushkit/supporting_pushkit_notifications_in_your_app
https://velog.io/@panther222128/Supporting-PushKit-Notifications-in-Your-App
전달을 요청하고 PushKit 노티피케이션의 수신을 처리하는 객체입니다.
https://developer.apple.com/documentation/pushkit/pkpushcredentials
https://velog.io/@panther222128/PKPushRegistry