我有一个uitableview,它显示来自解析数据库的每月简报。如何检查未读新闻稿并以红色显示给用户?另外,我想标记表格视图单元格。我是ios编程的新手,我查了很多帖子,但似乎没什么好看的。任何帮助将不胜感激。 感谢。
答案 0 :(得分:0)
在解析数据库中添加一列,其名称为msgread
,type of data
为boolean
,为default value with 0 means unread and 1 means read
,因此在UITableViewCell中显示项目时,您可以知道其已读或未读
每当user clicks tableview cell
将该项目background call
设为change msgread to 1
时。
根据您的要求使用自定义tableView单元格TDBadgedCell。