There is a UITableView of posts. Seen posts id\'s are saved in sqlite I want to show, seen posts in orange color and others in black. But when I
UITableView
Try completing the if statement
if (post.isRead.boolValue == true) { print("Color it") cellPost!.body.textColor = UIColor.orangeColor() cellPost!.title.textColor = UIColor.orangeColor() }else{ cellPost!.body.textColor = UIColor.blackColor() cellPost!.title.textColor = UIColor.blackColor()}