iPhone 中的通知
我们可以在 iPhone 中提供通知(显示一会儿然后消失),(就像 Android 中的 toast)。
如果是,那么如何?
如果否,那么替代方案是什么(警报和操作表除外)?
谢谢
Can we give notifications(which display for a moment and then disappear), in iPhone, (like toast in android).
If yes, Then How?
If no, then what is the alternative(except alert and action sheet)?
Thank You
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
iPhone SDK (4.3) 中没有与 Android Toast 通知等效的功能。您必须自行实施这些通知。 GameCenter 框架具有类似的显示成就的功能。有一个库可以在没有 GameCenter 的情况下重新创建这些成就通知:
https://github.com/typeoneerror/GKAchievementNotification
我建议通读此代码,了解其关键概念,然后开始使用自定义 UIView 子类和自定义通知处理程序类开发您自己的通知系统。
There is no equivalent to Android Toast Notifications in the iPhone SDK (4.3). You have to implement those notifications on your own. The GameCenter framework has a similar capability to show achievements. There is a library to recreate these achievement-notifications without GameCenter:
https://github.com/typeoneerror/GKAchievementNotification
I recommend to read through this code, understand its key concepts and then start developing your own notification system with a custom UIView subclass and a custom notification handler class.