为了账号安全,请及时绑定邮箱和手机立即绑定

请教下该怎么自定义UITableViewCell的textLabel字体颜色

请教下该怎么自定义UITableViewCell的textLabel字体颜色

iOS
偶然的你 2023-04-17 23:19:03
我看应用的情况,UITableViewCell的textLabel的textColor是自动控制的,而且好像是根据backgroundColor来判断的。这个textLabe的textColor能不能像UITableViewCell的backgorundView和selectBackgroundView的方式来设置
查看完整描述

1 回答

?
侃侃无极

TA贡献2051条经验 获得超10个赞

cell的textLabel是可以自定义textColor,还有highlightedTextColor,这就是两种状态。

// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
  if(0 == indexPath.row)
  {
    cell.textLabel.textColor = ...;
    cell.textLabel.highlightedTextColor = ...;
  }
  ...
}


查看完整回答
反对 回复 2023-04-20
  • 1 回答
  • 0 关注
  • 142 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信