当我点击推送通知的操作按钮时,如何转到最新的DetailView?
我正在使用一个基于导航的应用程序。现在我正在处理推送通知。我知道,当我单击通知中的操作按钮时,此方法将被称为: application:didFinishLaunchingWithOptions: 我的问题是,当我单击通知中的操作按钮时,有什么方法可以实现。我最新的提要项目detailView ll b 打开而不是tableView。谢谢
i am working with a nav based app. and now i m working with push notifications. i know that when i ll click the action button of notification, this method ll b called: application:didFinishLaunchingWithOptions: my question is that is there any way that when i click the action button in notification. My latest feed items detailView ll b opened instead of tableView. Thanx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。在您的应用程序中:didFinishLaunchingWithOptions:,告诉您的导航控制器推送您的详细视图控制器。这样,当应用程序从推送通知启动时,您将看到所需的详细视图。
Yes. In your application:didFinishLaunchingWithOptions:, tell your navigationController to push your detail view controller. That way when the application launches from the push notification, you'll see the detail view like you want.