美文网首页
UITableView Tips

UITableView Tips

作者: u14e | 来源:发表于2017-07-14 15:00 被阅读5次

    1.cell选中时,去掉选中的灰色背景

    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
        [tableView deselectRowAtIndexPath:indexPath animated:YES];
    }
    

    或者直接让灰色背景不显示

    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
        ......
        // Configure the cell...
        cell.selectionStyle = UITableViewCellSelectionStyleNone;
        return cell;
    }
    

    2.取消cell之间的分隔线

    self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
    

    默认是UITableViewCellSeparatorStyleSingleLine

    相关文章

      网友评论

          本文标题:UITableView Tips

          本文链接:https://www.haomeiwen.com/subject/diznhxtx.html