我现在正在尝试安排我的通知(如果它有效的话(
所有内容都已弃用,所以我使用addNotificationRequest方法。我没有任何错误,也没有发生任何事情。我也打开了我的poermission,在xcode上,我用后台模式和notif设置了我的应用程序。
我的组件上的代码也出现在我的登录页面上:
componentDidMount () {
const date=(new Date())
PushNotificationIOS.addNotificationRequest( NotificationRequest = {
id:'0',
title:'coucou',
body:"c'est moi !",
fireDate:date,
}
);
this.RequestUserPermission();
}
我忘了什么吗?
在指定的生效日期向通知中心发送notificationRequest。如果未设置点火日期,则立即点火。