2013-01-07 75 views
0

在我的tableView單元格中,在我的文本上有一個backgroundcolor,並且我不知道如何刪除它..可以有人幫助我嗎?iOS6單元格文本BackgroundColor

enter image description here

我已經試過

cell.backgroundColor = [UIColor clearColor]; 
cell.opaque = NO; 

但AINT工作

回答

1

你試過:

cell.textLabel.backgroundColor = [UIColor clearColor]; 
cell.textLabel.opaque = NO; 

和:

cell.detailTextLabel.backgroundColor = [UIColor clearColor]; 
cell.detailTextLabel.opaque = NO; 
+0

不,但它工作:)謝謝! –