0
代碼:本地通知其更新其內容
-(void)viewWillDisappear:(BOOL)animated
{
NSCalendar *calendar = [NSCalendar currentCalendar];
NSDateComponents *components = [[NSDateComponents alloc] init];
[components setDay: 3];
[components setMonth: 7];
[components setYear: 2012];
[components setHour: 21];
[components setMinute: 21];
[components setSecond: 30];
[calendar setTimeZone: [NSTimeZone defaultTimeZone]];
NSDate *dateToFire = [calendar dateFromComponents:components];
UILocalNotification *noti =[[UILocalNotification alloc] init];
noti.fireDate = dateToFire;
noti.repeatInterval = kCFCalendarUnitDay;
noti.soundName = @"chun.aiff";
noti.alertBody = [NSString stringWithFormat:@"Personal balance: %i", -PB];
[[UIApplication sharedApplication] scheduleLocalNotification:noti];
}
的缺陷:
如果我是正確的,我會說,一旦這個地方通知「嵌入」到設備的內存,它堅持已創建的每個本地通知。我是對的?如果這是真的,我該如何處理這種情況?
我不能理解你的意思是「堅持每一個本地通知」....和你想要管理的情況是什麼?請解釋.. – iSaalis
我正在測試我正在做的應用程序。我嘗試使用不同的發射日期。現在,應用程序每天都會推送數據,在我設置用於測試的所有時刻。不僅僅是,例如,12:00:00。 –