如何在react-native上的ios中编写带有用户通知的新RCT AppDelegate接口

问题描述 投票:0回答:1

我最近将我的react-native SDK版本升级到0.73, 但根据这里的升级助手

AppDelegate
接口定义从

改变了
@interface AppDelegate : UIResponder <UIApplicationDelegate, RCTBridgeDelegate>

@interface AppDelegate : RCTAppDelegate

但是由于我的项目使用“UserNotifications”,它应该用于扩展/实现 AppDelegate 接口,所以我不知道如何扩展这个新接口。

ios react-native appdelegate
1个回答
0
投票

好吧,在这里找到它: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
© www.soinside.com 2019 - 2024. All rights reserved.