微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

swift UITableViewCell 绘制边框加圆角

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

    let cornerRadius: CGFloat = 10

    cell.backgroundColor = UIColor.clear

    let layer = CAShapeLayer()

    let pathRef = CGMutablePath()

    let bounds = cell.bounds.insetBy(dx: 10, dy: 0)

    if indexPath.row == 0 && indexPath.row == tableView.numberOfRows(inSection: indexPath.section)-1 {

       pathRef.__addRoundedRect(transform: nil, rect: bounds, cornerWidth: cornerRadius, cornerHeight: cornerRadius)

    } else if indexPath.row == 0 {

       pathRef.move(to: CGPoint(x: bounds.minX, y: bounds.maxY))
       
       pathRef.addArc(tangent1End: CGPoint(x: bounds.minX, y: bounds.minY), tangent2End: CGPoint(x: bounds.midX, y: bounds.minY), radius: cornerRadius)
       
       pathRef.addArc(tangent1End: CGPoint(x: bounds.maxX, y: bounds.minY), tangent2End: CGPoint(x: bounds.maxX, y: bounds.midY), radius: cornerRadius)
       
       pathRef.addLine(to: CGPoint(x: bounds.maxX, y: bounds.maxY))
       
    } else if indexPath.row == tableView.numberOfRows(inSection: indexPath.section)-1 {

       pathRef.move(to: CGPoint(x: bounds.minX, y: bounds.minY))

       pathRef.addArc(tangent1End: CGPoint(x: bounds.minX, y: bounds.maxY), tangent2End: CGPoint(x: bounds.midX, y: bounds.maxY), radius: cornerRadius)
       
       pathRef.addArc(tangent1End: CGPoint(x: bounds.maxX, y: bounds.maxY), tangent2End: CGPoint(x: bounds.maxX, y: bounds.midY), radius: cornerRadius)
       
       pathRef.addLine(to: CGPoint(x: bounds.maxX, y: bounds.minY))
       
    } else {
        
       pathRef.addRect(bounds);
    }

    layer.path = pathRef

    //颜色修改

    layer.fillColor = UIColor.white.cgColor

//需要设置边框线加上这一行
// layer.strokeColor = UIColor.red.cgColor

    layer.linewidth = 0.3

    let testView = UIView(frame: bounds)

    testView.layer.insertSublayer(layer, at: 0)

    cell.backgroundView = testView
}

lazy var tabelView:UITableView = {
    let tableView = UITableView(frame:view.bounds,style: UITableView.Style.grouped)
    tableView.delegate = self
    tableView.dataSource = self
    tableView.register(UITableViewCell.self, forCellReuseIdentifier: "cell1")
    tableView.register(UITableViewCell.self, forCellReuseIdentifier: "cell2")
    tableView.separatorStyle = .none
    tableView.estimatedRowHeight = 0.0;
    tableView.estimatedSectionHeaderHeight = 0.0;
    tableView.estimatedSectionFooterHeight = 0.0;
    return tableView
}()

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐