我将UITextField放在UITableViewCell中并匹配其余行的缩进,我将x设置为15(我理解为默认缩进?)。它看起来很好并且与5s / 6上的其他细胞相匹配,但是在6+上,我看到了不同的结果。 6+上有不同的默认值吗?我在这里错过了什么吗?
答案 0 :(得分:1)
- (NSInteger)tableView:(UITableView *)tableView indentationLevelForRowAtIndexPath:(NSIndexPath *)indexPath
{
// yoy would be trying
return 15
// try this... adjust some value other than 15 if doesnt work in 6+
return self.view.frame.origin.x+15;
}