mirror of
https://github.com/zhigang1992/react-native-notifications.git
synced 2026-06-11 08:13:28 +08:00
16 lines
376 B
Objective-C
16 lines
376 B
Objective-C
@import UIKit;
|
|
#import <PushKit/PushKit.h>
|
|
@import UserNotifications;
|
|
|
|
@interface RNNotifications : NSObject
|
|
|
|
+ (instancetype)sharedInstance;
|
|
|
|
+ (void)startMonitorNotifications;
|
|
+ (void)startMonitorPushKitNotifications;
|
|
|
|
+ (void)didRegisterForRemoteNotificationsWithDeviceToken:(id)deviceToken;
|
|
+ (void)didFailToRegisterForRemoteNotificationsWithError:(NSError *)error;
|
|
|
|
@end
|