当应用程序不存在时播放警报声音 运行 IOS
Play Alarm Sound when app is not running IOS
我一直在开发 IOS 闹钟应用。我将在应用程序中创建警报的位置。所以我需要闹钟作为 "Clock" 应用程序在 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
link 例如代码或警报,但 UILocalNotification 没有任何设置贪睡的方法:
我一直在开发 IOS 闹钟应用。我将在应用程序中创建警报的位置。所以我需要闹钟作为 "Clock" 应用程序在 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
link 例如代码或警报,但 UILocalNotification 没有任何设置贪睡的方法: