Skip to content

Instantly share code, notes, and snippets.

@billypchan
Last active March 27, 2018 09:25
Show Gist options
  • Save billypchan/5e9c715d651a687f1990fe0d96dc164d to your computer and use it in GitHub Desktop.
Save billypchan/5e9c715d651a687f1990fe0d96dc164d to your computer and use it in GitHub Desktop.
extension UIApplicationState : CustomStringConvertible {
public var description: String {
switch self {
case .active: return "active"
case .inactive: return "inactive"
case .background: return "background"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment