Guest User

Untitled

a guest
Jan 18th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. func update(progress: CGFloat) {
  2. let height: CGFloat = foregroundButton.bounds.height * progress
  3. let rect = CGRect(x: 0, y: 0, width: foregroundButton.bounds.width, height: height)
  4. let path = UIBezierPath(rect: rect).cgPath
  5. shapeLayer.path = path
  6. }
Add Comment
Please, Sign In to add comment