Skip to content

Instantly share code, notes, and snippets.

@soujohnreis
Created August 25, 2020 01:28
Show Gist options
  • Save soujohnreis/c0c84d1aaa2365f3eaa0963a0c80297c to your computer and use it in GitHub Desktop.
Save soujohnreis/c0c84d1aaa2365f3eaa0963a0c80297c to your computer and use it in GitHub Desktop.
protocol ViewCodeProtocol {
func buildViewHierarchy()
func buildConstraints()
func buildAdditionalConfiguration()
func build()
}
extension ViewCodeProtocol {
func build() {
self.buildViewHierarchy()
self.buildConstraints()
self.buildAdditionalConfiguration()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment