码迷,mamicode.com
首页 > 其他好文 > 详细

解决UITableViewCell separator左侧不贴边

时间:2015-01-04 21:16:12      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:

分两步

1:设置tableView

if ([_tableView respondsToSelector:@selector(setSeparatorInset:)]) {
        [_tableView setSeparatorInset:UIEdgeInsetsZero];
        
    }
    if ([_tableView respondsToSelector:@selector(setLayoutMargins:)])  {
        [_tableView setLayoutMargins:UIEdgeInsetsZero];
    }

 

2:设置cell,此处使用了xib自定义cell

- (void)awakeFromNib {

    if ([self respondsToSelector:@selector(setLayoutMargins:)]) {
        [self setLayoutMargins:UIEdgeInsetsZero];
    }
    if ([self respondsToSelector:@selector(setSeparatorInset:)]){
        [self setSeparatorInset:UIEdgeInsetsZero];
    }
}

 

解决UITableViewCell separator左侧不贴边

标签:

原文地址:http://www.cnblogs.com/zanglitao/p/4202102.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!