5
我必須將單元格alpha設置爲最小。我在單元格中嘗試以下代碼行,它不起作用。 我也設置了不透明,但它仍然不起作用。任何人都有這個想法?如何設置UITableView單元格alpha?
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
{
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
cell.alpha =0.5;
這裏http://stackoverflow.com/questions/3763635/how-to-make-background-of-uitableviewcell-with-buttons-transparent看看/ 3763760#3763760 – Mat