Guest User

Untitled

a guest
Jun 18th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. func fadeOut(time:TimeInterval){
  2. UIView.animate(withDuration: time, animations: {
  3. self.alpha = 0.1
  4. })
  5. }
  6.  
  7. func fadeIn(time: TimeInterval){
  8. self.alpha = 1.0
  9. self.layer.removeAllAnimations()
  10. }
Add Comment
Please, Sign In to add comment