最近遇到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方法(使用方法交换后仍然会过度释放)。
网友评论