mirror of
https://github.com/zhigang1992/react-native-notifications.git
synced 2026-06-16 02:44:45 +08:00
25 lines
459 B
Markdown
Executable File
25 lines
459 B
Markdown
Executable File
---
|
|
id: ios-events
|
|
title: iOS
|
|
sidebar_label: iOS specific
|
|
---
|
|
|
|
## registerPushKitRegistered
|
|
registerPushKitRegistered
|
|
|
|
```js
|
|
Notifications.events().registerPushKitRegistered((event: RegisteredPushKit) => {
|
|
console.log(event.pushKitToken);
|
|
});
|
|
```
|
|
|
|
## registerPushKitNotificationReceived
|
|
registerPushKitNotificationReceived
|
|
|
|
```js
|
|
Notifications.events().registerPushKitNotificationReceived((event: object) => {
|
|
console.log(JSON.stringify(event));
|
|
});
|
|
```
|
|
|