如何从sqldb中提取数据并将其显示在UILocalnotification的alertbody上?

时间:2013-01-04 07:53:23

标签: iphone objective-c xcode uilocalnotification

您好我正在尝试在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];
}

0 个答案:

没有答案