正在寫一個警報應用,有本地消息後響鈴,警報的鈴聲播放正常。但是點擊界面的OK鍵之後鈴聲才播放,能不能一收到消息就能自動播放?
播放鈴聲代碼如下:
-(void)application:(UIApplication *)application
didReceiveLocalNotification:(UILocalNotification *)notification
{
application.applicationIconBadgeNumber = 0;
NSString *reminderText = [notification.userInfo objectForKey:kRemindMeNotificationDataKey];
NSURL *url = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/Mitwa.mp3", [[NSBundle mainBundle] resourcePath]]];
NSError *error;
player = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:&error];
player.numberOfLoops = -1;
if (player == nil)
NSLog([error description]);
else
[player play];
[viewController showReminder:@"Good Evening Mahesh!"];
}
我想讓它可以一接到消息就自動播放的。謝謝
使用UILocalNotification
,可以設置警報鈴聲,但是鈴聲只有30秒,本地消息的鈴聲不能超過30秒,如果想播放歌曲,需要點擊。