嗨,我正在尝试显示来自 db 的数据UILocalNotification
。我的数据库中有项目列表,每个项目都有描述。我想在 中显示描述UILocalNotification
。当我点击项目时,UILocalNotification
应该会出现一个带有描述的项目。当我点击另一个项目时,它的描述应该出现在alerview
.
我正在从数据库中检索数据。我不知道如何把它放在UILocalNotification's
警戒体上。
didSelectedListID = [[[remedyArray objectAtIndex:indexPath.row]objectForKey:@"RemedyID"]intValue];
didSelectedListID
包含该特定 List 的 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];
}