如何设置UITableView单元格alpha?

时间:2011-09-29 07:07:51

标签: iphone objective-c ios uitableview

我必须将alpha设置为最小值。我在单元格中尝试以下代码行,它不起作用。 我也设置了不透明但它仍然不起作用。有人对此有所了解吗?

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) 
{
    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
cell.alpha =0.5;

1 个答案:

答案 0 :(得分:28)

试试这个..

cell.contentView.alpha = 0.5;