首先贴出报错信息:
1. 在连线过程中,创建了多余的IBAction, 删除了IBAction的方法实现,但是并没有在storyboard板上删除连线
reason: '-[ViewController redBtn]: unrecognized selector sent to instance 0x7ff62ff05750'
2. 在连线过程中,创建了多余的IBOutlet,删除了IBOutlet的属性声明,但是并没有在storyboard板上删除连线
reason: '[<ViewController 0x7fbc19f06a90> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key label1.'
解决方法:
遇到这两种报错,首先检查连线问题,删除多余的连线即可。