iOS----------对单元格取余_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > iOS----------对单元格取余

iOS----------对单元格取余

 2017/11/2 18:11:35  张文权!  程序员俱乐部  我要评论(0)
  • 摘要:if(indexPath.row%2==0){cell.backgroundColor=[UIColormagentaColor];}else{cell.backgroundColor=[UIColorwhiteColor];}
  • 标签:iOS

    if (indexPath.row % 2 == 0) {

                cell.backgroundColor = [UIColor magentaColor];

    }else{

        

        cell.backgroundColor = [UIColor whiteColor];

 

    }

 

发表评论
用户名: 匿名