We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Once again, this is not Stevia-related per se but since we're not generally used to writing views in code, then some explanation might be useful 🤓
It goes like this :
loadView
class MyViewController: UIViewController { let myCustomView = MyCustomView() // 1 override func loadView() { // 2 view = myCustomView } override func viewDidLoad() { super.viewDidLoad() myCustomView.loginButton.tap(login) } func login() { // do something } }