APNs:单击通知时如何执行转至特定 ViewController

APNs: How to perform a segue to go to a specific ViewController when clicking on a Notification

我已经完成了一个新闻 iOS 应用程序,现在我想实现一个推送通知服务。我做了一切必要的工作,它工作得很好。现在我希望应用程序根据从 APNs 接收到的数据执行特定的 segue。

含义:当用户点击通知时,我希望应用执行转至某些 UIViewController。

我无法使用 AppDelegate.m 文件中的 didReceiveRemoteNotification 方法做到这一点。

我是否必须创建 class(或单例 class)才能在单击通知后执行操作?

注意:我看到了这么多的问题和答案,我有点迷路了,因为它们太多了。

提前致谢。

您必须在 didReceiveRemoteNotification 方法中处理您的通知。你可以 post NSUserNotification 处理它。

你能找到答案there