2013年7月18日木曜日

UITableViewのセルの色を交互に変える

UITableViewのセルの色を交互に変える方法をメモで。

やり方

デリゲートメソッド willDisplayCell:メソッド をオーバーライドします。
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
    // 偶数セル
    if (indexPath.row % 2 == 0) {
        cell.backgroundColor = [UIColor redColor];
    }
    // 奇数セル
    else {
        cell.backgroundColor = [UIColor blueColor];
    }
}

参考記事

UITableViewの行の色を交互に変える - ガジェット ウォーカー

0 件のコメント:

コメントを投稿