-[UIKeyboardLayoutStar release]: message sent to deallocated instance
Posted 十一岁的加重
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了-[UIKeyboardLayoutStar release]: message sent to deallocated instance相关的知识,希望对你有一定的参考价值。
网上大家都说是因为替换了系统的objextAtIndex方法,但是为了减少应用崩溃的可能,是要进行Hook的,所以不想取消Hook.
解决办法,关掉键盘进入后台。
- (void)applicationWillResignActive:(UIApplication *)application { [[UIApplication sharedApplication].keyWindow endEditing:YES]; }
以上是关于-[UIKeyboardLayoutStar release]: message sent to deallocated instance的主要内容,如果未能解决你的问题,请参考以下文章
Python3正则匹配re.split,re.finditer及re.findall函数用法详解
re.match,re.search,re.fullmatch之间的区别[重复]