Skip to content

Instantly share code, notes, and snippets.

@peteranny
Last active July 29, 2020 17:40
Show Gist options
  • Save peteranny/2b380ebeeab5cbda7e7c4f0cc7f7e1b8 to your computer and use it in GitHub Desktop.
Save peteranny/2b380ebeeab5cbda7e7c4f0cc7f7e1b8 to your computer and use it in GitHub Desktop.
import UIKit
import HelloWorldSDK
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")
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