Skip to content

Instantly share code, notes, and snippets.

@SwiftyAlex
Last active March 28, 2020 23:42
Show Gist options
  • Save SwiftyAlex/732feeeaddb56dcaebf2c26c95116885 to your computer and use it in GitHub Desktop.
Save SwiftyAlex/732feeeaddb56dcaebf2c26c95116885 to your computer and use it in GitHub Desktop.
@propertyWrapper
class Title {
var wrappedValue: UILabel
init(text: String) {
self.wrappedValue = UILabel()
wrappedValue.text = text
configureLabel()
}
private func configureLabel() {
wrappedValue.font = UIFont.preferredFont(forTextStyle: .title1)
wrappedValue.textColor = UIColor(named: "textColor")
wrappedValue.numberOfLines = 1
}
}
// Usage
@Title(text: "Home")
var titleLabel: UILabel
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment