gpt4 book ai didi

ios - 当应用程序未运行 IOS 时播放警报声音

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:57:45 26 4
gpt4 key购买 nike

我一直在开发 IOS 闹钟应用程序。我将在应用程序中创建警报的位置。所以我需要闹钟作为“时钟”应用程序在 IOS 中工作。

当闹钟时间到达且应用程序未运行时。将播放闹钟声音,用户可以通过单击“取消”或“暂停”来停止。

最佳答案

对于您需要使用UILocalNotification的警报,您可以使用应用程序设置警报时间表,如下所示:

- (void)scheduleLocalNotificationWithDate:(NSDate *)fireDate {
UILocalNotification *localNotification = [[UILocalNotification alloc] init];

[localNotification setFireDate:fireDate];
[localNotification setAlertBody:@"Time to wake up!"];
[localNotification setSoundName:@"Thunder Song.m4r"];

[[UIApplication sharedApplication] scheduleLocalNotification:localNotification];
}

这里有两个 Github 链接,用于示例代码或警报,但 UILocalNotification 没有任何设置贪睡的方法:

https://github.com/retsohuang/AlarmClock

https://github.com/bauerjon/Alarm-Clock-iOS

关于ios - 当应用程序未运行 IOS 时播放警报声音,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32627322/

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