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

iOS7 iOS8 tableview separatorInset cell分割线左对齐

时间:2015-01-04 15:03:37      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:

  iOS7 和 iOS8 中tableview cell分割线左对齐的方法不一样,特此为以后需要做笔记。

  iOS7 中方法很简单,只需要设置 _table.separatorInset = UIEdgeInsetsMake(0, 0, 0, 0);

  而iOS8 中方法需要写一段代码:

  

-(void)viewDidLayoutSubviews {
    if ([_table respondsToSelector:@selector(setSeparatorInset:)]) {
        [_table setSeparatorInset:UIEdgeInsetsZero];
    }
    if ([_table respondsToSelector:@selector(setLayoutMargins:)])  {
        [_table setLayoutMargins:UIEdgeInsetsZero];
    }
}

-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{
  
       if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {
           [cell setLayoutMargins:UIEdgeInsetsZero];
       }
       if ([cell respondsToSelector:@selector(setSeparatorInset:)]){
            [cell setSeparatorInset:UIEdgeInsetsZero];
       }
    
}

  

iOS7 iOS8 tableview separatorInset cell分割线左对齐

标签:

原文地址:http://www.cnblogs.com/lichao666500/p/4201085.html

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