(Swift) PrepareForSegue: fatal error: unexpectedly found nil while unwrapping an Optional value
问题 DetailViewController: @IBOutlet var selectedBundesland: UILabel! TableViewController: override func prepareForSegue(segue: UIStoryboardSegue!, sender: AnyObject!) { if (segue.identifier == "BackToCalculator") { var vc:FirstViewController = segue.destinationViewController as FirstViewController vc.selectedBundesland.text = "Test" } IBOutlet is connected! Error: fatal error: unexpectedly found nil while unwrapping an Optional value I read multiple pages about Optionals but i didn't know the