UIButton在圆角时消失



我只想圆角按钮的左下角,但是当我实现以下代码时,按钮会从视图中消失。

法典

    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
    }
}

按钮的边界很可能为零或接近零。因此,该按钮不会显示,或者面具将掩盖整个事物。

最新更新