Skip to content

Instantly share code, notes, and snippets.

@faganello60
Created August 28, 2017 14:50
Show Gist options
  • Save faganello60/50e34d4e0af3690cd6b6435c16c5a4ee to your computer and use it in GitHub Desktop.
Save faganello60/50e34d4e0af3690cd6b6435c16c5a4ee to your computer and use it in GitHub Desktop.
protocol UIController {
var navigationTitle: String { get }
}
extension UIController {
var navigationTitle: String {
return "Titulo Padrão"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment