uitableviewcell中的文字显示

今天的主题是:丰富对uitableviewcell的外显效果。达到很好的标示未选择cell,选中的cell,已经选过的cell。

上传关键代码:

1>未选择的cell:

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

{


}


2>选中的cell:

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

{

    cell.selectionStyle = UITableViewCellSelectionStyleBlue;

    cell.m_dateLabel.highlightedTextColor = [UIColor whiteColor];

    cell.m_detailLabel.highlightedTextColor = [UIColor whiteColor];

    cell.m_titleLabel.highlightedTextColor = [UIColor whiteColor];

}


3>已选过的cell:

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

{

    AnnounceCell *cell = (AnnounceCell *)[tableViewcellForRowAtIndexPath:indexPath];

    cell.selectionStyle = UITableViewCellSelectionStyleBlue;

    cell.m_dateLabel.textColor = [UIColor lightGrayColor];

    cell.m_detailLabel.textColor = [UIColor lightGrayColor];

    cell.m_titleLabel.textColor = [UIColor lightGrayColor];

}

对背景图片的操作类似。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值