如何实现闹钟的周期提醒功能?

发布于 2022-09-01 18:47:56 字数 185 浏览 18 评论 0

各位大神,你们好
现在所说的是IOS开发
我现在要实现一个闹钟功能,具体为类似于每周一、每周三、每周四、每周日同一时间提醒的功能。
我在这里不是要问怎么使用iPhone
我是要问代码应该如何实现
在具体一点就是使用localnotification,但是具体应该怎么用,我并没有一个思路。
求大神指点,最好上代码,谢谢。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

羁绊已千年 2022-09-08 18:47:57
UILocalNotification *notification = [[UILocalNotification alloc]  init];
notification.fireDate = yourDate; // 周一早上八点
notification.timeZone = [NSTimeZone localTimeZone];
notification.alertBody = @"xxx";
notification.repeatInterval = NSWeekCalendarUnit;
notification.soundName = UILocalNotificationDefaultSoundName;

[[UIApplication sharedApplication] scheduleLocalNotification:notification];

notification = [[UILocalNotification alloc]  init];
notification.fireDate = yourDate; // 周三早上八点
notification.timeZone = [NSTimeZone localTimeZone];
notification.alertBody = @"xxx";
notification.repeatInterval = NSWeekCalendarUnit;
notification.soundName = UILocalNotificationDefaultSoundName;

[[UIApplication sharedApplication] scheduleLocalNotification:notification];

notification = [[UILocalNotification alloc]  init];
notification.fireDate = yourDate; // 周四早上八点
notification.timeZone = [NSTimeZone localTimeZone];
notification.alertBody = @"xxx";
notification.repeatInterval = NSWeekCalendarUnit;
notification.soundName = UILocalNotificationDefaultSoundName;

[[UIApplication sharedApplication] scheduleLocalNotification:notification];

…………
病女 2022-09-08 18:47:57

谢谢,不过感觉略麻烦。

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