-[UIKBBlurredKeyView candidateList]: unrecognized selector sent to instance 0x5a89960
发布日期:2021-06-29 04:20:41 浏览次数:2 分类:技术文章

本文共 1249 字,大约阅读时间需要 4 分钟。

有用户反应了app在用手写输入法输入的时候,出现了闪退,经过追踪查看,崩溃信息-[UIKBBlurredKeyView candidateList]: unrecognized selector sent to instance 0x177cc850。这个页面由于使用了UIScrollview的category中重写了三个方法

[objc]   
  1. - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event  
  2. {  
  3.     [[self nextResponder] touchesBegan:touches withEvent:event];  
  4.     [super touchesBegan:touches withEvent:event];  
  5. }  
  6.   
  7. -(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event  
  8. {  
  9.     [[self nextResponder] touchesMoved:touches withEvent:event];  
  10.     [super touchesMoved:touches withEvent:event];  
  11. }  
  12.   
  13. - (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event  
  14. {  
  15.     [[self nextResponder] touchesEnded:touches withEvent:event];  
  16.     [super touchesEnded:touches withEvent:event];  
  17. }  
我们这三个方法主要是在UIScrollview上处理收键盘的操作,让手势向下传递,于是,对系统的手写键盘造成了影响。解决方法如下:

1.在UIScrollView上面加一个UIView,通过在view上面的手势来改变键盘

[objc]   
  1. UITapGestureRecognizer *tapGr = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(hideKeyboard:)];  
  2. tapGr.cancelsTouchesInView = NO;  
  3. [backView addGestureRecognizer:tapGr];  

2.在UITableView上改变键盘

[objc]   
  1. UITapGestureRecognizer *tapGr = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(hideKeyboard:)];  
  2. //不加会屏蔽到TableView的点击事件等  
  3. tapGr.cancelsTouchesInView = NO;  
  4. [tableView addGestureRecognizer:tapGr];  

转载地址:https://blog.csdn.net/ZH952016281/article/details/52367763 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:4.29练习【Vulnhub靶机系列】DC3
下一篇:dispatch_group_enter、 dispatch_group_leave和dispatch_group_wait来实现同步

发表评论

最新留言

留言是一种美德,欢迎回访!
[***.207.175.100]2024年04月29日 16时23分21秒