我在uitableviewcell上渲染两个标签。我想增加它们之间的距离。 这是我的代码:
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
NSDictionary *values = self.viewModel.dataSet[indexPath.row];
NSString *key = values.allKeys.firstObject;
id value = values[key];
[NSLayoutConstraint constraintWithItem: cell.textLabel attribute: NSLayoutAttributeBottom
relatedBy:NSLayoutRelationEqual toItem: cell.detailTextLabel
attribute: NSLayoutAttributeTop multiplier:1.0 constant:20.0];
.....
然而,他们似乎并没有感动。
任何人都可以帮助我吗?我不太熟悉代码创建约束。