首页 > 移动平台 > 详细

iOS UITableView 分割线从零开始

时间:2016-12-17 16:49:23      阅读:196      评论:0      收藏:0      [点我收藏+]

第一种(不自己画线):

代码如下

// 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 分割线从零开始

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!