0
在我的應用程序中,我有朋友列表說:3個朋友,所有這三個都有生日的詳細信息。我需要安排本地通知以顯示他們的b'days警報。我知道並處理了本地通知,但我將如何處理這些多重通知?iPhone中的多個本地通知
我放火日期「for循環」。就是它正確,請參閱該代碼。
UILocalNotification *localNotif = [[UILocalNotification alloc] init];
if (localNotif == nil)
return;
NSDateFormatter *formatter = [[[NSDateFormatter alloc]init]autorelease];
for (int i = 0; i< [delegate.viewController.contactList count] ; i++) {
NSString *birthday = [[myArray objectAtIndex:i]objectForKey:@"birthday"];
[formatter setDateFormat:@"MM/dd/yyyy"];
NSDate *date = [formatter dateFromString:birthday];
localNotif.fireDate = [date dateByAddingTimeInterval:10];
localNotif.timeZone = [NSTimeZone defaultTimeZone];
NSLog(@"local %@",localNotif.fireDate);
}
localNotif.applicationIconBadgeNumber = 1;
NSString *itemName = @「Friend Name";
NSDictionary *userDict = [NSDictionary dictionaryWithObjectAndKey:itemName,@"msg", nil];
localNotif.userInfo = userDict;
[[UIApplication sharedApplication] scheduleLocalNotification:localNotif];
[localNotif release];
我想要什麼,在這種方法只我要基於所有的朋友訂的通知如果我錯過了任何東西,請告訴我
日Thnx哥們!但是如果m有超過500的朋友,並且必須安排每個人。不是性能有效嗎? – iCoder4777
這只是通知(小窗口顯示兩個文本字符串)。我不認爲業績會受到影響。 –
這裏是什麼原型通知,它是一個屬性? – iCoder4777