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

iOS UITableView 分割线从零开始

时间:2016-12-17 16:51:43      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:ati   使用   开始   底部   elf   index   splay   sep   class   

第一种(不自己画线):

代码如下

// tableView的分割线从零开始
-(void)viewDidLayoutSubviews
{
    if ([self.tableView respondsToSelector:@selector(setSeparatorInset:)]) {
        [self.tableView setSeparatorInset:UIEdgeInsetsMake(0,0,0,0)];
    }
    
    if ([self.tableView respondsToSelector:@selector(setLayoutMargins:)]) {
        [self.tableView setLayoutMargins:UIEdgeInsetsMake(0,0,0,0)];
    }
}

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

第二种

自定义Cell 在Cell中自己画线

要使用这种方法 把tableView的自带分割线先去掉

self.table.separatorStyle = UITableViewCellSeparatorStyleNone;

然后在自定义cell里面

写一个view在最底部 当作分割线 就好了。

 

iOS UITableView 分割线从零开始

标签:ati   使用   开始   底部   elf   index   splay   sep   class   

原文地址:http://www.cnblogs.com/huanying2000/p/6192490.html

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