iOS设置tableViewCell的cell、textLabel和detailTextLabel背景颜色

//    注意:在- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath代理方法中修改textLabeldetailTextLabel的背景颜色,不会马上生效,具体原因没有深入研究(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];

}

你可能感兴趣的:(iOS,-,UIKit框架)