我刚刚将backgroundColor添加到我的手机中,发生了这种情况:
我只是想知道这两个乐队是如何出现在我的手机中的。我用来添加背景的代码是:
-(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]];
}
}