mirror of
https://github.com/zhigang1992/react-native-notifications.git
synced 2026-06-10 15:58:51 +08:00
17 lines
687 B
Objective-C
17 lines
687 B
Objective-C
#import <Foundation/Foundation.h>
|
|
@import UserNotifications;
|
|
#import "RNNotificationsStore.h"
|
|
#import "RNEventEmitter.h"
|
|
|
|
@interface RNNotificationEventHandler : NSObject
|
|
|
|
- (instancetype)initWithStore:(RNNotificationsStore *)store;
|
|
|
|
- (void)didRegisterForRemoteNotificationsWithDeviceToken:(id)deviceToken;
|
|
- (void)didFailToRegisterForRemoteNotificationsWithError:(NSError *)error;
|
|
|
|
- (void)didReceiveForegroundNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions))completionHandler;
|
|
- (void)didReceiveNotificationResponse:(UNNotificationResponse *)notificationResponse completionHandler:(void (^)(void))completionHandler;
|
|
|
|
@end
|