0
在我的tableView單元格中,在我的文本上有一個backgroundcolor,並且我不知道如何刪除它..可以有人幫助我嗎?iOS6單元格文本BackgroundColor
我已經試過
cell.backgroundColor = [UIColor clearColor];
cell.opaque = NO;
但AINT工作
在我的tableView單元格中,在我的文本上有一個backgroundcolor,並且我不知道如何刪除它..可以有人幫助我嗎?iOS6單元格文本BackgroundColor
我已經試過
cell.backgroundColor = [UIColor clearColor];
cell.opaque = NO;
但AINT工作
你試過:
cell.textLabel.backgroundColor = [UIColor clearColor];
cell.textLabel.opaque = NO;
和:
cell.detailTextLabel.backgroundColor = [UIColor clearColor];
cell.detailTextLabel.opaque = NO;
不,但它工作:)謝謝! –