Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. extension UIView.AnimationCurve {
  2. var animationOption: UIView.AnimationOptions {
  3. switch self {
  4. case .easeInOut:
  5. return .curveEaseInOut
  6. case .easeIn:
  7. return .curveEaseIn
  8. case .easeOut:
  9. return .curveEaseOut
  10. case .linear:
  11. return .curveLinear
  12. }
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement