我正在使用FCM将通知从我自己的服务器发送到iOS设备。当应用程序处于前台或最小化时,我成功收到通知。但当我完全关闭应用程序时,即使从后台关闭,我也不会收到任何通知。但当我重新打开应用程序时,我会收到之前发送的所有通知?我如何更改此设置?在didFinishLaunchingWithOptions中,我正在注册通知。在didReceiveRemoteNotification中,获取通知并调度本地通知。
didFinishLaunchingWithOptions
didReceiveRemoteNotification
tf7tbtn21#
添加此行
Messaging.messaging().shouldEstablishDirectChannel = true
之后
FirebaseApp.configure() Messaging.messaging().delegate = self Messaging.messaging().shouldEstablishDirectChannel = true
1条答案
按热度按时间tf7tbtn21#
添加此行
之后