Skip to content

Instantly share code, notes, and snippets.

@robnadin
Created January 24, 2018 18:09
Show Gist options
  • Save robnadin/e2a8b5e8de405f30d405f71d19a277db to your computer and use it in GitHub Desktop.
Save robnadin/e2a8b5e8de405f30d405f71d19a277db to your computer and use it in GitHub Desktop.
extension UIViewAnimatingState: CustomStringConvertible {
public var description: String {
switch self {
case .inactive: return "inactive"
case .active: return "active"
case .stopped: return "stopped"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment