您好我正在尝试在UILocalNotification
上显示来自db的数据。我的数据库中的项目列表每个项目都有描述。我想在UILocalNotification
中显示说明。当我点按项目时,应显示UILocalNotification
及其说明。当我点按其他项时,其说明应显示在alerview
上。
我正从db中检索数据。我不知道怎么把它放到UILocalNotification's
警报体上。
didSelectedListID = [[[remedyArray objectAtIndex:indexPath.row]objectForKey:@"RemedyID"]intValue];
didSelectedListID
包含该特定列表的ID号。
NSDate *alertTime = [[NSDate date] dateByAddingTimeInterval:01];
UIApplication* app = [UIApplication sharedApplication];
UILocalNotification* notifyAlarm = [[UILocalNotification alloc] init];
if(notifyAlarm)
{
notifyAlarm.fireDate = alertTime;
notifyAlarm.timeZone = [NSTimeZone defaultTimeZone];
notifyAlarm.repeatInterval = 0;
notifyAlarm.alertBody = [];
[app scheduleLocalNotification:notifyAlarm];
}