如何在 iPhone 上 2 秒后发出警报
我想发出一个警报,该警报将在 2 秒后响起。如何处理报警代码。 有什么帮助吗?
谢谢
I want to fire an alarm that will ring after 2 secs. How to handle alarm code.
Any help?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你应该看看 NSTimer 类
You should look into the NSTimer class
这实际上取决于
警报
的含义...如果您想在一段时间后弹出警报,您可以使用本地通知,这是 iOS 4 的一项功能。可以在此处找到示例。
如果您需要计时器调用某些函数,请尝试 NSTimer。这是一个 示例< /a>.
It really depends what do you mean by an
alarm
...If you want a popup alert after a while, you can use Local Notification, which is an iOS 4 feature. An example can be found here.
If you need certain function to be invoked by a timer, try NSTimer. Here is an example.