Setting background color of a table view cell on iPhone

后端 未结 12 711
孤街浪徒
孤街浪徒 2020-12-02 11:23

I want to achieve the effect where one cell of the table view will have blue background, the next one will have white, the next one will have blue again, and then white and

12条回答
  •  情深已故
    2020-12-02 12:02

    please add the following code in the cellForRowAtIndexPath

    if (indexPath.row % 2 == 0){
        cell.backgroundColor =[UIColor blueColor];
    } else {
        cell.backgroundColor =[UIColor whiteColor];
    }
    

    i think this will help you

提交回复
热议问题