//AppDelegate.m 文件下
#import <RNCPushNotificationIOS.h>
@implementation AppDelegate
// Required to register for notifications //这里提示报错了
报错信息;'Use of undeclared identifier 'RNCPushNotificationIOS'
意思是使用了没有声明的变量,但是我顶部引入了(按照包文档操作的,已谷歌奈何没有找到解决办法)
操作根据链接: https://github.com/react-native-community/push-notification-ios
前端菜鸡一枚,正在搞 react native,不懂 ios,希望懂的朋友能告知下,哪里的问题,我改怎么操作?
1
CDuXZMAPgHp1q9ew 2020-06-06 20:53:01 +08:00
改成 #import <RNCPushNotificationIOS/RNCPushNotificationIOS.h> 试下?
|
2
CDuXZMAPgHp1q9ew 2020-06-06 20:54:13 +08:00 1
或者 #import <PushNotificationIOS/RNCPushNotificationIOS.h>
|
4
toacnme 2020-10-21 15:53:55 +08:00
咋解决的啊
|