我看應(yīng)用的情況,UITableViewCell的textLabel的textColor是自動(dòng)控制的,而且好像是根據(jù)backgroundColor來(lái)判斷的。這個(gè)textLabe的textColor能不能像UITableViewCell的backgorundView和selectBackgroundView的方式來(lái)設(shè)置
1 回答

侃侃無(wú)極
TA貢獻(xiàn)2051條經(jīng)驗(yàn) 獲得超10個(gè)贊
cell的textLabel是可以自定義textColor,還有highlightedTextColor,這就是兩種狀態(tài)。
// Customize the appearance of table view cells. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { if(0 == indexPath.row) { cell.textLabel.textColor = ...; cell.textLabel.highlightedTextColor = ...; } ... }
- 1 回答
- 0 關(guān)注
- 182 瀏覽
添加回答
舉報(bào)
0/150
提交
取消