Skip to content

Instantly share code, notes, and snippets.

@boek
Created April 20, 2015 23:20
Show Gist options
  • Save boek/7f53d7e412bbaeddf909 to your computer and use it in GitHub Desktop.
Save boek/7f53d7e412bbaeddf909 to your computer and use it in GitHub Desktop.
func buildView<T: UIView>(closure: ((T) -> ())? = nil) -> T {
let view = T(frame: CGRectZero)
view.setTranslatesAutoresizingMaskIntoConstraints(false)
closure?(view)
return view
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment