首页 > 系统 > iOS > 正文

iOS 去掉tableview的cell线

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

整体去掉cell的线

tableView.separatorStyle = UITableViewCellSelectionStyleNone;

去掉tableview多余的cell线

tableview行数比较少的情况,会导致空的地方也还是会有cell线

tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];

去掉特定的cell线

根据需求去掉某些行的线

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{//第0行的cell线去掉if(indexPath.row == 0){ cell.separatorInset = UIEdgeInsetsMake(0,SCREEN_WIDTH, 0, 0); }}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表