如何识别 UILocalNotification 并再次暂停它?
我正在开发一个闹钟应用程序,但遇到了一些问题,并且出现了小睡和重复闹钟的情况,我正在创建一个具有名称、时间和其他闹钟选项的类,
int alarm_id;
NSString *nameOfAlarm;
NSString *timeOfAlarm;
NSString *repeatAlarm;
NSString *soundOfAlarm;
NSString *snoozOfAlarm;
NSString *soundFadeInOfAlarm;
NSString *volumeOfAlarm;
NSString *vibrationOfAlarm;
现在我将以上值保存到我的 Sqlite 数据库中,同时我正在设置通知对于iOS,当通知触发时,我想小睡一下,并且还想在不同的日子有相同的闹钟, 我不需要确切的代码,而是想要一个概念或视图如何做到这一点? 帮助 。
I am developing an alarm app and having some issues and snooz and repeatation of alarms, I am making a Class having name, time and other alarm options below
int alarm_id;
NSString *nameOfAlarm;
NSString *timeOfAlarm;
NSString *repeatAlarm;
NSString *soundOfAlarm;
NSString *snoozOfAlarm;
NSString *soundFadeInOfAlarm;
NSString *volumeOfAlarm;
NSString *vibrationOfAlarm;
Now I am saving above values to my Sqlite database, and at same time I am setting notification to iOS, when notification fires the, then I want to snooz and also want same alarm on different days,
I don't want exact code, but a concept or view how to do that ?
Help .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 UILocalNotification 的 userInfo 来存储每个通知的唯一标识符。
查看 UILocalNotification 文档。
You can use UILocalNotification's userInfo to store a unique identifier for each notification.
Take a look at the UILocalNotification documentation.