如何在didfinishlaunchingwithoptions中調用didReceiveRemoteNotification方法?我正在使用迅捷的語言。 當用戶直接打開應用程序時,通知被取消,didReceiveRemoteNotification中執行的操作不會被調用。如何處理這個?如何在didfinishlaunchingwithoptions中調用didReceiveRemoteNotification Swift?
我已經達到了這裏。但無法完成
if let options = launchOptions, notification = options[UIApplicationLaunchOptionsRemoteNotificationKey] as? [NSObject : AnyObject] {
self.application(application, didReceiveRemoteNotification: notification, fetchCompletionHandler: _______)
}
@SausageMachine \t 在didReceiveRemoteNotification中,我保存了這個通知數據。但是,當通知來了,應用程序打開(沒有點擊通知),通知會自動取消並且保存操作不會執行 –
無論您使用哪種語言的Swift/Objective c,但進程對於推送通知都是相同的。當推送通知將收到並點擊通知時,DidReceiveRemoteNotification方法將會調用。 –
但是,當用戶直接打開應用程序時,通知被取消,didReceiveRemoteNotification中執行的操作不會被調用。如何處理這個? –