Implicitly deployed options are a useful Swift function for things like user interface elements that are not assigned during class constructor, but we can safely assume that for most functions (like they were assigned in viewDidLoad).
eg.
@IBOutlet weak var textView : UITextView!
Is there an equivalent for Kotlin, or a workaround that achieves the same effect?
source
share