为不同的列设置间隔颜色(alternate color ),可以方便用户观看app的内容,在UTTableView中设置间隔颜色需要重写下面的willDisplayCell:forRowAtIndexPath方法
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
if( [indexPath row] % 2) {
[cell setBackgroundColor:[UIColorwhiteColor]];
}
else {
[cell setBackgroundColor:[UIColorgrayColor]];
}
}
本文转自Jake Lin博客园博客,原文链接http://www.cnblogs.com/procoder/archive/2012/12/29/UITableView-alternate-color.html:,如需转载请自行联系原作者