美文网首页
swift设置tableview分割线置顶

swift设置tableview分割线置顶

作者: 羽化行云 | 来源:发表于2017-07-13 12:11 被阅读0次

override func viewDidLayoutSubviews() {

    if(self.tableView?.responds(to: #selector(setter: UITableViewCell.separatorInset)))! {

        self.tableView?.separatorInset = UIEdgeInsetsMake(0, 0, 0, 0)

    }

    if(self.tableView?.responds(to: #selector(setter: UIView.layoutMargins)))! {

        self.tableView?.layoutMargins = UIEdgeInsetsMake(0, 0, 0, 0)

    }

}

func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath) {

    if(cell.responds(to: #selector(setter: UITableViewCell.separatorInset))) {

        cell.separatorInset = UIEdgeInsetsMake(0, 0, 0, 0)

    }

    if(cell.responds(to: #selector(setter: UIView.layoutMargins))) {

        cell.layoutMargins = UIEdgeInsetsMake(0, 0, 0, 0)

    }

}

相关文章

网友评论

      本文标题:swift设置tableview分割线置顶

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