mirror of
https://github.com/zhigang1992/react-native-notifications.git
synced 2026-06-13 17:45:45 +08:00
11 lines
328 B
Objective-C
11 lines
328 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import <UserNotifications/UserNotifications.h>
|
|
|
|
@interface RNNotificationCenterMulticast : NSObject<UNUserNotificationCenterDelegate>
|
|
|
|
- (void)addNativeDelegate:(id<UNUserNotificationCenterDelegate>)delegate;
|
|
- (void)removeNativeDelegate:(id<UNUserNotificationCenterDelegate>)delegate;
|
|
|
|
@end
|
|
|