美文网首页
cell的长度调整

cell的长度调整

作者: 夏夏的一些事 | 来源:发表于2016-11-08 10:34 被阅读0次

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{

if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {

[cell setSeparatorInset:UIEdgeInsetsMake(0, 45, 0, 0)];

}

if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {

[cell setLayoutMargins:UIEdgeInsetsZero];

}

}

if ([self.tableViewrespondsToSelector:@selector(setSeparatorInset:)]) {

[self.tableViewsetSeparatorInset:UIEdgeInsetsMake(0, 45, 0, 0)];

}

if ([self.tableViewrespondsToSelector:@selector(setLayoutMargins:)]) {

[self.tableViewsetLayoutMargins:UIEdgeInsetsZero];

}

相关文章

网友评论

      本文标题:cell的长度调整

      本文链接:https://www.haomeiwen.com/subject/kpjauttx.html