Swiftでクラス間の値渡しを行っていますが、エラーが出ていて困っています。
原因お分かりになりますか?
全く原因がわかりません・・
遷移元のソース(抜粋) @IBAction func tappedNextButton(_ sender: Any) { performSegue(withIdentifier: "Go", sender: nil) } override func prepare(for segue: UIStoryboardSegue, sender: Any?) { if segue.identifier == "Go" { let nextVC = segue.destination as! dacideTimeViewController nextVC.outputValue = "あいうえお" } }
遷移先のソース import UIKit class decideTimeViewController: UIViewController { @IBOutlet weak var datelabel: UILabel! var outputValue : String? override func viewDidLoad() { super.viewDidLoad() datelabel.text = outputValue } }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/18 14:17