notificaiton = [[UILocalNotification alloc] init];
notificaiton.fireDate = [NSDate Date];
notificaiton.repeatInterval = 0;
notificaiton.alertBody = @"Alarm";
notificaiton.timeZone = [NSTimeZone defaultTimeZone];
notificaiton.repeatCalendar = [NSCalendar currentCalendar
notificaiton.soundName = @"Alarm.wav"
[[UIApplication sharedApplication] scheduleLocalNotification:notificaiton];
我的問題是, 本地通知警報只停留幾秒鐘,但有可能本地通知警報保持幾分鐘嗎?本地通知警報時機
請任何身體有回答
由於預先
不,我認爲這是不可能的... – Vishal
通知始終停留在notificationcentre中的iOS5及以上 –
對不起祖阿曼我對設備 –