2011-09-29 65 views
5

我必須將單元格alpha設置爲最小。我在單元格中嘗試以下代碼行,它不起作用。 我也設置了不透明,但它仍然不起作用。任何人都有這個想法?如何設置UITableView單元格alpha?

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

這裏http://stackoverflow.com/questions/3763635/how-to-make-background-of-uitableviewcell-with-buttons-transparent看看/ 3763760#3763760 – Mat

回答

24

試試這個..

cell.contentView.alpha = 0.5; 
+0

感謝它的工作 – triveni

相關問題