シミュレータを起動すると発生しました.
どなたかご意見ください!
XcodeVersion 11.5 (11E608c)
追記です.
<エラーメッセージ(先頭より数行)>
Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<prototype.ViewController 0x7fe502d08060> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key button.'
以下,ソースコード全文です.
html
1import UIKit 2 3class ViewController: UIViewController { 4 5 @IBOutlet weak var textField: UITextField! 6 @IBOutlet weak var label: UILabel! 7 8 override func viewDidLoad() { 9 super.viewDidLoad() 10 // Do any additional setup after loading the view. 11 } 12 13 @IBAction func button(_ sender: UIButton) { 14 label.text = textField.text 15 } 16 17}
回答1件
あなたの回答
tips
プレビュー