如果广播流的连接不良,下一步该怎么办?
我制作了 Iphone 广播流应用程序。
并提交到itunes app stroe。
但他们拒绝了我的应用程序。
这就是原因。
2.2: Apps that exhibit bugs will be rejected
When the user taps on a radio, an alert is displayed stating the connection is lost
and no further action can be produced.
是的,如果连接失败,我会让连接错误消息出现在屏幕上。
但他们要求采取进一步行动。
您认为还需要采取哪些进一步行动?
您使用过 Wunder Radio 或 Tunein Radio 吗?如果连接失败,这些应用程序会执行相同的操作。
仅显示连接错误消息。
我应该怎么办?
I made Radio Streaming Iphone App.
And submit to itunes app stroe.
But they rejected my app.
This is the reason.
2.2: Apps that exhibit bugs will be rejected
When the user taps on a radio, an alert is displayed stating the connection is lost
and no further action can be produced.
Yes, If the connection failed, I let the connection bad message appear to screen.
But they demand that there should be further action.
Do you think What further action is needed?
Did you use Wunder Radio or Tunein Radio? These app did same action if the connection failed.
Only shows connection error messase.
What should I do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最好的选择是在连接丢失、失败或中断时提供更好的用户体验。我的意思是,您应该实现一种用户可见的机制,尝试根据网络条件的变化重新建立与流媒体服务器的连接。
另外,如果您允许用户从您提到的警报视图中触发该操作,例如“连接丢失。您想重试吗”+否/是,那就太好了。
一个好的起点是将 Reachability 添加到你的项目(苹果有使用它的演示代码)。
Your best bet here is to produce better user experience when connection is lost, has failed or was interrupted. I mean you should implement a mechanism visible to user that tries to reestablish connection with your streaming server based on network condition changes.
Also it would be good if you allow your users to trigger that action from the alert view you mentioned, e.g. "Connection is lost. Would you like to retry" + no/yes.
A good place to start with is adding Reachability to your project (Apple has demo code which uses it).