我知道这个问题被问了很多,但答案对我不起作用。对于这个类:
import UIKit
class ProfileViewController: UIViewController {
@IBOutlet weak var bioTextView: UITextView!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
我已经从我的故事板中添加了一个出口到 bioTextView。在情节提要的这个视图上没有其他插座,我所做的只是添加一个插座,没有别的,我得到了错误。我正在替换的Objective-C文件还有其他出口,这些出口连同该文件一起被删除。我不断收到此错误:Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<UIViewController 0x7fc86bc08700> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key bioTextView.'
任何没有为已经知道如何在 Xcode 中编码的人编写的带有明确说明的答案将不胜感激。