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

UITableViewCell 顶格

时间:2015-04-21 11:04:31      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:

  1. 首先在ViewDidLoad 或者ViewWillAppear里边写
     1 if ([_tabView respondsToSelector:@selector(setSeparatorInset:)]) {
     2         
     3         [_tabView setSeparatorInset:UIEdgeInsetsZero];
     4         
     5     }
     6     if ([_tabView respondsToSelector:@selector(setLayoutMargins:)]) {
     7         
     8         [_tabView setLayoutMargins:UIEdgeInsetsZero];
     9         
    10     }

     

  2. 然后在cellForRowIndexPath或者是Display里边加上
     1 - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{
     2     
     3     
     4     if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
     5         
     6         [cell setSeparatorInset:UIEdgeInsetsZero];
     7         
     8     }
     9     
    10     if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {
    11         
    12         [cell setLayoutMargins:UIEdgeInsetsZero];
    13     }
    14     
    15     
    16     
    17     
    18 }

    之后 cell 下边的 线条就可以顶格了

UITableViewCell 顶格

标签:

原文地址:http://www.cnblogs.com/MJJdyx/p/4443791.html

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