推送通知和查看按钮操作[iphone sdk APNS]
我正在为 Iphone 开发一个启用推送通知的应用程序。 在我的应用程序中,我有两个列表视图(UITableView) 第一个是类别列表,第二个是内容列表。 用户单击所需的类别,然后将显示与该类别相关的内容,然后用户选择内容,内容将显示在详细视图(通常是 UIWebView)中。
推送通知已成功进入我的应用程序。 我的要求是:- 单击推送警报的 VIEW 按钮后,应用程序将直接显示特定的 详细视图(UIWebView)[省略类别和内容列表]。 我有一个类别和内容的唯一 ID。 那么,请您指导我如何将特定内容与推送通知相关联并直接显示该内容。
谢谢和问候。
I am developing a Push Notification enabled application for Iphone.
In My application I have two List View (UITableView)
1st for Category List and the 2nd is Contents List.
User clicks the desired category then the contents related to that category will be displayed then user will choose the contents and the contents will be displayed in detail view(generally a UIWebView).
Push notification is successfully coming in my application.
My requirement is:-
After VIEW button of Push alert is clicked application will directly display a particular
detail view (UIWebView)[Omitting category and contents list].
I have a unique ID for category and contents.
So will you please guide me how to relate a particular content with Push Notification and directly display of that content.
Thanks and regards.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗨,
我已经解决了这个问题。
这就是我所做的。
当应用程序收到推送通知时,它将通知存储在 launchOptions NSDictionary 中。
笔记:
这里的 contTag 是在服务器端设置的用于推送通知的有效负载的密钥。
您可以在服务器端设置任何密钥。
希望它能帮助一些身体。
谢谢
HI,
I have solved the problem.
This is what I have done.
When application received push notification, it stored notification in launchOptions NSDictionary.
NOTE:
Here contTag is a key set in server side for pay load of push notification.
U can set any key in server side.
Hope it will help some body.
Thanks