Skip to content

Instantly share code, notes, and snippets.

@PatrikTheDev
Created June 21, 2020 16:13
Show Gist options
  • Save PatrikTheDev/0689d786e6cbf68fa66b8ac9888cf4b6 to your computer and use it in GitHub Desktop.
Save PatrikTheDev/0689d786e6cbf68fa66b8ac9888cf4b6 to your computer and use it in GitHub Desktop.
configure vs self-executing closure
// BAD
let idgaf: UILabel = {
let label = UILabel()
label.text = "huh"
return label
}()
// GOOD
let disIsGood = configure(UILabel() {
$0.text = "YAAY"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment