UILocalNotification* localNotification = [[UILocalNotification alloc] init];
localNotification.alertBody =[NSString stringWithFormat:@"meeting schedule from %@ ",[namelist objectAtIndex:i]];
localNotification.timeZone = [NSTimeZone defaultTimeZone];
localNotification.soundName = @"meetting.mp3";
[[UIApplication sharedApplication] scheduleLocalNotification:localNotification];
[[NSNotificationCenter defaultCenter] postNotificationName:@"timerInvoked" object:self];
我正在使用上面的代碼來創建本地通知。但以前的通知不會被清除。當新的通知被觸發時,它再次觸發。在觸發後刪除UILocalNotification
我用[[UIApplication sharedApplication] cancelAllLocalNotifications];
通知不回地面發射。如何在通知發佈後刪除通知?
如果要設置'的本地通知firedate'?你真的收到通知了嗎? –
我正在使用本地通知將信息發送到服務通知 – Anupama
我想你對本地通知沒有明確的想法。我不確定你想要UILocalNotification或NSNotification。你能澄清你的要求嗎? –