--- id: ios-events title: iOS sidebar_label: iOS specific --- ## registerPushKitRegistered() Fired when the user registers for PushKit notifications. The handler will be invoked with an event holding the hex string representing the `pushKitToken` ```js Notifications.events().registerPushKitRegistered((event: RegisteredPushKit) => { console.log(event.pushKitToken); }); ``` ## registerPushKitNotificationReceived() Fired when a PushKit notification is received. The handler will be invoked with the notification object. ```js Notifications.events().registerPushKitNotificationReceived((event: object) => { console.log(JSON.stringify(event)); }); ```