web-dev-qa-db-fra.com

Comment puis-je faire un programme UIButton de couleur de bordure dégradée avec Swift

Comment puis-je concevoir par programmation UIButton comme cette couleur de bordure dégradée?

Gradient button]

Merci pour l'aide

15
m.akyol
let gradient = CAGradientLayer()
gradient.frame =  CGRect(Origin: CGPointZero, size: self.myButton.frame.size)
gradient.colors = [UIColor.blueColor().CGColor, UIColor.greenColor().CGColor]

let shape = CAShapeLayer()
shape.lineWidth = 2
shape.path = UIBezierPath(rect: self.myButton.bounds).CGPath
shape.strokeColor = UIColor.blackColor().CGColor
shape.fillColor = UIColor.clearColor().CGColor
gradient.mask = shape

self.myButton.layer.addSublayer(gradient)

Swift version:

    let gradient = CAGradientLayer()
    gradient.frame =  CGRect(Origin: CGPoint.zero, size: self.myButton.frame.size)
    gradient.colors = [UIColor.blue.cgColor, UIColor.green.cgColor]

    let shape = CAShapeLayer()
    shape.lineWidth = 2
    shape.path = UIBezierPath(rect: self.myButton.bounds).cgPath
    shape.strokeColor = UIColor.black.cgColor
    shape.fillColor = UIColor.clear.cgColor
    gradient.mask = shape

    self.myButton.layer.addSublayer(gradient)
36
gvuksic