如何识别 UILocalNotification 并再次暂停它?

发布于 2024-11-28 13:36:52 字数 427 浏览 1 评论 0原文

我正在开发一个闹钟应用程序,但遇到了一些问题,并且出现了小睡和重复闹钟的情况,我正在创建一个具有名称、时间和其他闹钟选项的类,

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凹づ凸ル 2024-12-05 13:36:52

您可以使用 UILocalNotification 的 userInfo 来存储每个通知的唯一标识符。

查看 UILocalNotification 文档。

You can use UILocalNotification's userInfo to store a unique identifier for each notification.

Take a look at the UILocalNotification documentation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文