Files
react-native-notifications/docs/ios-events.md
2019-09-09 15:39:28 +03:00

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));
});
```