我有一个自定义的UIViewController,里面有一个Table View。
我将Main.storyboard中的场景中的Table View拖放到类中,以获取Table View的出口,将其命名为“ tableView”。
然后将这一行添加到我的班级:
@IBOutlet weak var tableView: UITableView!
我想将名称更改为tvMC,所以我删除了该行,并再次将表视图拖入控件视图,这次将其命名为“ tvMC”。
我建立并运行并得到此错误:
Terminating app due to uncaught exception 'NSUnknownKeyException' ...
this class is not key value coding-compliant for the key tableView.'
我决定只使用tableView使其工作,但是将插座改回tableView之后,出现了此错误:
Terminating app due to uncaught exception 'NSUnknownKeyException' ...
this class is not key value coding-compliant for the key tvMC.'
好像是因为我两次控制拖曳它,所以即使我删除了其中一个,该键仍然存在。
那么我如何查看为UI元素创建的键列表,并删除不需要的键?