我只想将按钮的左下角四舍五入,但是当我实现以下代码时,按钮从视图中消失了。



    cancelBtn.setTitle("Cancel", for: .normal)
    cancelBtn.setTitleColor(UIColor.ecaftRed, for: .normal)
    cancelBtn.layer.borderWidth = 3
    cancelBtn.layer.borderColor = UIColor.whiteFadedPlus.cgColor
    cancelBtn.roundBtnCorners([.bottomLeft], radius: 25)
    cancelBtn.addTarget(self, action: #selector(cancelBtnTapped(_:)), for: .touchUpInside)
    popUpView.addSubview(cancelBtn)

    cancelBtn.snp.makeConstraints { (make) -> Void in
        make.left.equalTo(popUpView)
        make.bottom.equalTo(popUpView)
        make.size.equalTo(CGSize(width: 0.5*popUpView.frame.width, height: 0.25*popUpView.frame.height))
    }


extension UIButton{

    func roundBtnCorners(_ corners:UIRectCorner, radius: CGFloat){
        let path = UIBezierPath(roundedRect: self.bounds,
                                     byRoundingCorners: corners,
                                     cornerRadii: CGSize(width: radius, height: radius))
        let maskLayer = CAShapeLayer()
        maskLayer.frame = self.bounds
        maskLayer.path = path.cgPath
        self.layer.mask = maskLayer
    }
}


Source

最佳答案

您按钮的边界很可能为零或接近零。因此,该按钮将不会显示,否则该遮罩将掩盖整个事物。

10-07 18:20