如何为具有 uilocalnotification 的单元格提供单独的颜色

Posted

技术标签:

【中文标题】如何为具有 uilocalnotification 的单元格提供单独的颜色【英文标题】:how to give seperate color for cells which has uilocalnotification 【发布时间】:2014-05-26 09:57:29 【问题描述】:

我已经设置了LocalNotification,如下所示,并且工作正常.. 现在我的问题是..如果我打开看到通知,我想为UITableView 中的单元格提供一些颜色,我已经收到了通知..很明显..我正在做账单提醒项目并设置提醒完美..现在我想为收到通知的账单提供单独的颜色.. 请帮帮我..“ttt”是账单的最后插入行。

一些陈述

UILocalNotification *localNotification = [[UILocalNotification alloc] init];
localNotification.fireDate = [NSDate dateWithTimeIntervalSinceNow:180];
localNotification.alertBody = [NSString stringWithFormat:@"%@",sometext];
localNotification.soundName = UILocalNotificationDefaultSoundName;

id var = [NSNumber numberWithInteger: ttt];
[localNotification.userInfo setValue:var forKey:@"id"];

[[UIApplication sharedApplication] scheduleLocalNotification:localNotification];

一些陈述

【问题讨论】:

【参考方案1】:

您必须在此处应用简单的编程逻辑。 只需为该特定余数设置一些标志值,然后在 tableview 单元格中加载时,只需检查单元格中加载的余数是否具有本地通知。 并相应地更改单元格的颜色。

更多:如果您想检查剩余是否已过期,您可以按照以下步骤操作:

1 .在设置剩余日期时,只需存储该日期。

2 。加载单元格时: 将该特定余数的保存日期与当前日期进行比较,

如果(剩余日期>当前日期)

设置绿色图像或其他指示remaider尚未过期

其他

设置红色图片,表示剩余部分已经过期。

P.S:使用逻辑

【讨论】:

以上是关于如何为具有 uilocalnotification 的单元格提供单独的颜色的主要内容,如果未能解决你的问题,请参考以下文章

如何为每周和每年的每日设置 UILocalNotifications

具有重复一次行为的 UILocalNotification,如 Messages App

UILocalNotification 每周重复一次

如何为 Apple Watch 配置本地通知

取消具有重复间隔的 UILocalNotification

如何为具有生命周期'a的结构实现具有'静态生命周期的特征?