我正在创建一个闹钟应用程序,它可以连续播放我设置的声音。现在,当我在闹钟响起时单击通知时,闹钟停止并打开应用程序。
有没有办法打开应用,但点击通知时一直播放声音?
-(void) scheduleLocalNotificationWithDateNSDate *)fireDate
UILocalNotification *notification = [[UILocalNotification alloc]init];
notification.fireDate = fireDate;
notification.alertBody =@"Wake up!";
notification.soundName = @"sax.mp3";
[[UIApplication sharedApplication]scheduleLocalNotification:notification];
[notification release];
Best Answer-推荐答案 strong>
您可以让闹钟响起,但再次播放相同的音乐。我的意思是在闹钟停止后——你的音乐也停止了。但是当应用程序打开时,您再次播放相同的音乐
关于iOS闹钟,一直播放闹钟声音,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/23476894/
|