码迷,mamicode.com
首页 > 移动开发 > 详细

IOS UITableViewCell 分割左对齐处理

时间:2015-06-19 16:51:23      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:

代码处理方案

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

SB或者XIB
技术分享
left该成0

IOS UITableViewCell 分割左对齐处理

标签:

原文地址:http://blog.csdn.net/u013682799/article/details/46562091

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