Skip to content

Instantly share code, notes, and snippets.

@dymx101
Created September 19, 2021 03:11
Show Gist options
  • Save dymx101/b03991e31506c97303ed21a37499eaba to your computer and use it in GitHub Desktop.
Save dymx101/b03991e31506c97303ed21a37499eaba to your computer and use it in GitHub Desktop.
public func createView<T>(_ setup: ((T) -> Void)) -> T where T: UIView {
let view = T()
view.translatesAutoresizingMaskIntoConstraints = false
setup(view)
return view
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment