在- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath代理方法中修改textLabel和detailTextLabel的背景顏色阶牍,不會(huì)馬上生效。
下面的代理方法設(shè)置星瘾,界面效果會(huì)馬上響應(yīng)走孽,親測(cè)可行:
- (void)tableView: (UITableView*)tableView willDisplayCell: (UITableViewCell*)cell forRowAtIndexPath: (NSIndexPath*)indexPath
{
cell.textLabel.textAlignment = 1;
cell.accessoryType = UITableViewCellAccessoryNone;
cell.textLabel.textColor = [UIColor redColor];
[ cell.textLabel mas_makeConstraints:^(MASConstraintMaker *make) {
make.center.equalTo(cell);
}];
}