能够通知用户 - iPhone 应用程序
我有一个 iPhone 应用程序,它本质上是一个目录,当我添加新产品时,我可以向 iPhone 上的用户发送通知吗?
我希望能够通过后端管理器(例如网站)添加通知,让人们快速轻松地了解新产品。
我知道这是可能的,因为我过去曾多次看到它与 iPhone 应用程序一起使用。
请有人指出我正确的方向吗?我已经阅读过有关 PushNotifications 的内容,但是您可以在不每次都更新应用程序的情况下发送它们吗?
谢谢,
I have an iPhone application which is essentially a catalogue, when I add a new product in, can I send a notification to the user on their iPhone?
I want to be able to add a notification through a back end manager, like a web site for example, something that is quick and easy to let people know about a new product.
I know this is possible as I have seen it a few times being used with iPhone applications in the past.
Please can someone point me in the right direction with this? I have read about PushNotifications but can you send them without updating the app every time?
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,这就是所谓的推送通知。您可以在文档 中阅读有关它的所有内容http://developer.apple.com/library/ios/#documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Introduction/Introduction.html
编辑_:谁告诉您每次要发送推送通知时都需要更新应用程序?
Yes, it's called Push Notifications. You can read everything about it here in the docs http://developer.apple.com/library/ios/#documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Introduction/Introduction.html
Edit_: Who told you you need to update the App everytime you want to send out a Push Notification?
推送通知将非常适合您。它们是您可以发送给所有(或特定)用户的消息。当设备收到消息时,您可以选择添加图标徽章并播放声音。我首先看一下这个教程: http://www .raywenderlich.com/3443/apple-push-notification-services-tutorial-part-12
掌握了这一点并准备好支持所有用户后,请访问此网站: http://www.easyapns.com
注意:您无需每次发送时都更新应用程序通知。您可以在需要时发送,理论上可以发送多少(请查看 Apple 的指南)。但是,您将需要一台服务器来支持推送通知。
Push notifications would be perfect for you. They are messages that you can send to all (or specific) users. When the device receives the message, you can choose to add an icon badge and play a sound. I would first look at this tutorial: http://www.raywenderlich.com/3443/apple-push-notification-services-tutorial-part-12
After you master that, and you're ready to support all of your users, then go to this site: http://www.easyapns.com
Note: You will not need to update your app every time you want to send a notification. You can send them when you want and theoretically how many you want (check out Apple's guidelines). HOWEVER, you WILL need a server to support push notifications.