Sign up here with your email
alternate color change in tableview cell
alternate row color change
color change
color change in tableview cell
Change color of alternate row in UITableView
Subscribe to:
Post Comments (Atom)
code to rule ios
{
if(indexPath.row % 2 == 0)
cell.backgroundColor = [UIColor redColor];
else
cell.backgroundColor = [UIColor whiteColor];
}