/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/react-native/Libraries/PushNotificationIOS/RCTPushNotificationManager.h
48 строк
2 KB
Ingrid Wang
Delete deprecated didReceiveLocal/RemoteNotification (#43117)
21 фев 2024, 09:23
21 фев 2024, 09:23
7fffe69
Код
Авторство
О чём код?
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #import <React/RCTEventEmitter.h> extern NSString *const RCTRemoteNotificationReceived; @interface RCTPushNotificationManager : RCTEventEmitter typedef void (^RCTRemoteNotificationCallback)(UIBackgroundFetchResult result); + (void)didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken; + (void)didFailToRegisterForRemoteNotificationsWithError:(NSError *)error; /** * Triggers remoteNotificationReceived or localNotificationReceived events. * * Call this method from UNUserNotificationCenterDelegate's * `userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:` in order to process a user tap on a * notification. * * To process notifications received while the app is in the foreground, call this method from * `userNotificationCenter:willPresentNotification:withCompletionHandler:`. Use the completion handler to determine if * the push notification should be shown; to match prior behavior which does not show foreground notifications, use * UNNotificationPresentationOptionNone. * * If you need to determine if the notification is remote, check that notification.request.trigger * is an instance of UNPushNotificationTrigger. */ + (void)didReceiveNotification:(UNNotification *)notification; /** * Call this from your app delegate's `application:didReceiveRemoteNotification:fetchCompletionHandler:`. If you * implement both that method and `userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:`, only * the latter will be called. */ + (void)didReceiveRemoteNotification:(NSDictionary *)notification fetchCompletionHandler:(RCTRemoteNotificationCallback)completionHandler; /** * Call this in `userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:` * to get the correct value from .getInitialNotification in JS. */ + (void)setInitialNotification:(UNNotification *)notification; @end