当xcode提示以下错误时,很可能的原因是由于ViewController中的View在Controller中连接了outlet,然后又删除了Controller中对应的属性,导致xcode找不到这个属性而报错
[UILabel copyWithZone:]: unrecognized selector sent to instance 0x7f8c53f697
解决办法:
找到进入这个VC出错的ViewController,根据错误提示,确认是何种View,然后在场景中,一个一个View查找其outlet,找到没有在Controller中对应属性的outlet 删除之。