Skip to content

Instantly share code, notes, and snippets.

@peteranny
Last active July 29, 2020 17:42
Show Gist options
  • Save peteranny/252916247d5a000b7565f7644464023d to your computer and use it in GitHub Desktop.
Save peteranny/252916247d5a000b7565f7644464023d to your computer and use it in GitHub Desktop.
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
let label: UILabel = {
let label = UILabel()
label.frame.origin = CGPoint(x: 100, y: 100)
label.text = HelloWorld().hello(to: "World")
/* Use your asset */
label.textColor = HelloWorld().helloColor
label.sizeToFit()
return label
}()
view.addSubview(label)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment