我最近将我的react-native SDK版本升级到0.73, 但根据这里的升级助手
AppDelegate
接口定义从改变了
@interface AppDelegate : UIResponder <UIApplicationDelegate, RCTBridgeDelegate>
到
@interface AppDelegate : RCTAppDelegate
但是由于我的项目使用“UserNotifications”,它应该用于扩展/实现 AppDelegate 接口,所以我不知道如何扩展这个新接口。
好吧,在这里找到它:https://github.com/zo0r/react-native-push-notification/issues/2344
要使用最新的react-native扩展AppDelegate接口,我应该使用显而易见的
#import <RCTAppDelegate.h>
#import <UIKit/UIKit.h>
#import <UserNotifications/UNUserNotificationCenter.h>
@interface AppDelegate : RCTAppDelegate <UNUserNotificationCenterDelegate>
@end