设置xcode中模版tableViewCell的textLabel和detailTextLabel背景颜色

来源:互联网 发布:上海东行网络 编辑:程序博客网 时间:2024/04/25 22:01


注意:在- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath代理方法中修改textLabel和detailTextLabel的背景颜色,不会马上生效,具体原因没有深入研究(Xcode 7.1  iOS9.1环境中);



下面的代理方法设置,界面效果会马上响应,亲测可行:

- (void)tableView: (UITableView*)tableView willDisplayCell: (UITableViewCell*)cell forRowAtIndexPath: (NSIndexPath*)indexPath

{

    cell.backgroundColor = [UIColor blackColor];

    cell.textLabel.backgroundColor = [UIColor redColor];

    cell.detailTextLabel.backgroundColor = [UIColor blueColor];

}


0 0
原创粉丝点击