我尝试取消本地通知。我附上一个带有Id的字典,以便稍后找到它:
+ (void) send:(NSString*)title actionText:(NSString *)actionText when:(NSDate *)when count:(NSInteger)count option:(NSDictionary *)options
{
UILocalNotification *notif = [[UILocalNotification alloc] init];
//Setup code here...
notif.userInfo = options;
ALog(@"Sending notification %@ %@", notif.alertBody, notif.userInfo);
//Print: Sending notification Task Col 0 0 {id = "1-1"};
[[UIApplication sharedApplication] scheduleLocalNotification:notif];
}
然后当我试图找到它时:
+ (void) cancelNotification:(NSString *)theId {
for(UILocalNotification *aNotif in [[UIApplication sharedApplication] scheduledLocalNotifications])
{
if([[aNotif.userInfo objectForKey:@"id"] isEqualToString:theId])
{
// Never come here: userInfo is nil!!!
}
}
}
用户信息始终为零。我发送了字典:
NSMutableDictionary *info = [[NSMutableDictionary alloc] init];
[info setObject:theId forKey:@"id"];
或
[NSMutableDictionary dictionaryWithObject:theId forKey:@"id"]
具有相同的结果。 (theId是NSString)
答案 0 :(得分:0)
本地通知仅有效,它具有有效的时间戳。因此,在您创建时确保它具有有效的时间戳。因此,它将出现在UIApplicaiton的计划通知中。
请告诉我你的意见。
例如:localNotification.fireDate = [NSDate date];