我必须将alpha设置为最小值。我在单元格中尝试以下代码行,它不起作用。 我也设置了不透明但它仍然不起作用。有人对此有所了解吗?
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
{
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
cell.alpha =0.5;
答案 0 :(得分:28)
试试这个..
cell.contentView.alpha = 0.5;