So I have a class:
class BoatTypeGame: UITableViewController
The table view has 14 rows. From rows 1-7, I want to make the color of the text green
and for rows 8-14, I want to make the color of the text red
. By the way, the cells will not have the same text every time the view loads; I used the arc4random_uniform()
method to randomize the text. Thank you!