用代码设置 iPhone 闹钟?
是否可以设置闹钟和闹钟?我的应用程序代码中 iPhone 闹钟应用程序的闹钟描述?例如,在代码中设置一个早上 7:00 的闹钟,并带有“煮咖啡”的描述。因此,当用户退出我的程序时,如果他们进入 iPhone 的时钟应用程序,它将设置一个早上 7:00 的闹钟?任何回复都将不胜感激。谢谢
Is it possible to set an alarm & alarm description for the iPhone's alarm clock application WITHIN my application code? So for example, set a 7:00am alarm with a description 'make coffee" in code. So when the user exits my program, if they enter iPhones clock application it will have a 7am alarm set?, any responses will be greatly appreciated. thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不可以——您的应用程序已被系统沙箱化,无法访问或修改其他应用程序的数据。不过,您可以使用
UILocalNotification
类创建自己的计划通知;如果你用谷歌搜索,你会发现很多关于如何以这种方式创建类似警报的警报的示例。Nope—your application is sandboxed by the system and cannot access or modify other apps’ data. You can create your own scheduled notifications, however, using the
UILocalNotification
class; if you Google that, you’ll find plenty of examples of how to create alarm-like alerts that way.不应该
Event Kit
能达到你的目的吗?
Shouldn't
Event Kit
serve your purpose?