如何在uitableview中检查已读和未读的项目?

时间:2015-11-24 14:21:23

标签: ios uitableview parse-platform

我有一个uitableview,它显示来自解析数据库的每月简报。如何检查未读新闻稿并以红色显示给用户?另外,我想标记表格视图单元格。我是ios编程的新手,我查了很多帖子,但似乎没什么好看的。任何帮助将不胜感激。 感谢。

1 个答案:

答案 0 :(得分:0)

读取和未读项目的解决方案:

在解析数据库中添加一列,其名称为msgreadtype of databoolean,为default value with 0 means unread and 1 means read,因此在UITableViewCell中显示项目时,您可以知道其已读或未读

每当user clicks tableview cell将该项目background call设为change msgread to 1时。

表格视图单元格的解决方案:

根据您的要求使用自定义tableView单元格TDBadgedCell

enter image description here