美文网首页
iOS UICompatibilityInputViewCont

iOS UICompatibilityInputViewCont

作者: 小蜗牛吱呀之悠悠 | 来源:发表于2020-08-15 15:53 被阅读0次

最近遇到H5界面里的textField和textView在点击第二次的时候崩溃的问题,但是原生的却没有问题,打开僵尸断点打印如下错误信息。

Cannot form weak reference to instance (0x1534ad840) of class UICompatibilityInputViewController. It is possible that this object was over-released, or is in the process of deallocation.

原因:
UICompatibilityInputViewController是UIViewController的子类,我在UIViewController的category中重写的dealloc方法,导致UICompatibilityInputViewController过度释放而崩溃
解决办法:
去掉category中的dealloc方法(使用方法交换后仍然会过度释放)。

相关文章

网友评论

      本文标题:iOS UICompatibilityInputViewCont

      本文链接:https://www.haomeiwen.com/subject/yphzrktx.html