UITableviewCell中具有不同颜色的边带

时间:2012-11-05 15:50:12

标签: iphone objective-c uitableview ios6

我刚刚将backgroundColor添加到我的手机中,发生了这种情况:

enter image description here

我只是想知道这两个乐队是如何出现在我的手机中的。我用来添加背景的代码是:

-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{
    if (indexPath.row % 2) {
        [cell setBackgroundColor: [UIColor colorWithRed:48/255.0 green:83/255.0 blue:129/255.0 alpha:0.1]];
    }
}

0 个答案:

没有答案