UITableViewCell中6+的不同缩进值?

时间:2014-10-24 03:54:07

标签: ios cocoa-touch

我将UITextField放在UITableViewCell中并匹配其余行的缩进,我将x设置为15(我理解为默认缩进?)。它看起来很好并且与5s / 6上的其他细胞相匹配,但是在6+上,我看到了不同的结果。 6+上有不同的默认值吗?我在这里错过了什么吗?

On the 6

On the 6+

1 个答案:

答案 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;
}