首页 > 系统 > iOS > 正文

ios tableview去除指定cell分割线

2019-11-09 18:06:53
字体:
来源:转载
供稿:网友

方法1: tableview.separatorStyle = UITableViewCellSeparatorStyleNone;然后自定义cell的分割线 方法2: 设置cell的separatorInset cell.separatorInset = UIEdgeInsetsMake(0, 0, 0, MAXFLOAT);不显示

当分组情况下,去除分组间的线

设置tableview的style为UITableViewStylePlain

去除头部黏合 - (void)scrollViewDidScroll:(UIScrollView *)scrollView { CGFloat sectionHeaderHeight = 10; if (scrollView.contentOffset.y<=sectionHeaderHeight&&scrollView.contentOffset.y>=0) { scrollView.contentInset = UIEdgeInsetsMake(-scrollView.contentOffset.y, 0, 0, 0); } else if (scrollView.contentOffset.y>=sectionHeaderHeight) { scrollView.contentInset = UIEdgeInsetsMake(-sectionHeaderHeight, 0, 0, 0); } }


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表