gpt4 book ai didi

ios - 如何在 iOS 中设置闹钟?

转载 作者:可可西里 更新时间:2023-11-01 03:42:25 29 4
gpt4 key购买 nike

我知道这个问题在 StackOverflow 上被问过很多次,但我无法在我的应用程序中设置闹钟,因为我是 iOS 的新手?我正在按照本教程设置闹钟:

Setting a reminder using UILocalNotification in iOS.

但是,它似乎对我不起作用。

我需要每天设置闹钟,比如每天 5.00 PM。我无法使用日期选择器来选择时间。

最佳答案

  1. 首先在您的 xib 上,(或代码)设置日期选择器模式:时间(默认为日期和时间)

  2. 系统假定开火日期是当前日期,时间是用户选择的时间。这不是问题,因为您设置了重复间隔,所以它会起作用。我已经测试过了。

    UILocalNotification *localNotif = [[UILocalNotification alloc] init];
    [localNotif setFireDate:datePicker.date];
    [localNotif setRepeatInterval:NSDayCalendarUnit];
    [[UIApplication sharedApplication] scheduleLocalNotification:localNotif];

PS:最好使用 NSDateComponents 类将秒数设置为 0,以便将闹钟设置为在您的第一秒响起想。您可以检查:

Local notifications in iOS.

您发布的关于如何执行此操作的教程。

关于ios - 如何在 iOS 中设置闹钟?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11849790/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com