我已经使用以下代码来修复分隔符问题:
if([tableView respondsToSelector:@selector(setSeparatorInset:)]) {
[tableView setSeparatorInset:UIEdgeInsetsZero];
}
UITableView
但是在iOS7中,和cell.textLabel
或的左右边缘之间仍然存在较大的差距detailTextLabel
我有自定义 UITableViewCells,我在其中指定文本标签的位置,因此这会导致标签与 iOS 6 和 7 中的标准单元格不对齐。
有任何想法吗?