我想在选择 UITableViewCell 的子视图(viewz)时将其排除在更改背景之外。
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
cell.selectionStyle = UITableViewCellSelectionStyleBlue;
UIView *viewz = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 30, 30)];
viewz.backgroundColor = [UIColor redColor];
[cell.contentView addSubview:viewz];
未选择单元格。一切都好。
http://img32.imageshack.us/img32/1599/screenshot20121129at123.png
单元格已将颜色更改为蓝色。没关系。但我不希望我的viewz将背景颜色更改为蓝色。我怎样才能做到这一点?