Skip to content

Instantly share code, notes, and snippets.

@bill350
Created March 29, 2018 19:51
Show Gist options
  • Save bill350/aecbacb704662e184ba960bee3824b01 to your computer and use it in GitHub Desktop.
Save bill350/aecbacb704662e184ba960bee3824b01 to your computer and use it in GitHub Desktop.
// Type of screen and its error view to display
enum ErrorScreen {
case home
case details
var errorView: ErrorView.Type? {
switch self {
default:
return ErrorViewRetry.self
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment