let vc = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "ViewController") as! ViewController
vc.label.text = "my Label" // Crashes here, label is nil
What if I need to use it here?
let vc = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "ViewController") as! ViewController
vc.label.text = "my Label" // Crashes here, label is nil
What if I need to use it here?