前语:

每当到618、双11这样大促的时候,查找作为整个App的中心功能,不仅担当着流量进口,还承载着用户感知到这个产品在导购场景中的服务与体验,所以保障查找以便更好的助力618大卖。

现象:

搜狗输入框双击调起键盘crash

监控渠道:

监控渠道检测到很多的crash,现象都为在极短的时刻距离内键盘呼应问题

搜狗输入法双击输入框崩溃问题 | 京东云技术团队

搜狗输入法双击输入框崩溃问题 | 京东云技术团队

心路历程:

  • 经过调查现象,猜测应该是用户经过微信或其他软件仿制关键词,然后来到京东万商进行张贴查找功能。可能由于一些原因(未弹出仿制权限提示弹窗)导致查找框没有呈现张贴功能,此时用户张狂双击输入框导致的。于是开始测验市面上的App,以京东App为例,复现过程如下:

搜狗输入法双击输入框崩溃问题 | 京东云技术团队

搜狗输入法双击输入框崩溃问题 | 京东云技术团队

  • 测验结果如下表:
App 是否崩溃 频率
京东
京东万商
七鲜
淘宝 
支付宝
百度
百度地图 
美团 
盒马 
1688 
哔哩哔哩 
抖音
  • 经过手机隐私拿到的崩溃日志,分别为京me、京东、百度,体现与SGM渠道表象相同

搜狗输入法双击输入框崩溃问题 | 京东云技术团队

搜狗输入法双击输入框崩溃问题 | 京东云技术团队

搜狗输入法双击输入框崩溃问题 | 京东云技术团队

源码调试:

  • 经过Xcode断点调试结果如下图:

搜狗输入法双击输入框崩溃问题 | 京东云技术团队

  • UICompatibilityInputViewController过度release

搜狗输入法双击输入框崩溃问题 | 京东云技术团队

  • crash在_wantsForwardingFromResponder:toNextResponder:withEvent

解决方案:

  • 经过runtime对给crash办法一个默认的实现
static BOOL (*originalImpl)(id, SEL, UIResponder*, UIResponder*, UIEvent* ) = nil;
- (BOOL)_wantsForwardingFromResponder:(UIResponder *)arg1 toNextResponder:(UIResponder *)arg2 withEvent:(UIEvent *)arg3 {
    NSString* responderClassName = NSStringFromClass([arg2 class]);
    if ([responderClassName isEqualToString:@"_UIRemoteInputViewController"]) {
        bool isDeallocating = false;
        // isDeallocating = _objc_rootIsDeallocating(arg2);
        // Use 'performSelector' when u are develop a App-Store App.
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Warc-performSelector-leaks"
        SEL sel = NSSelectorFromString(@"_isDeallocating");
        isDeallocating = [arg2 respondsToSelector:sel] && [arg2 performSelector:sel];
#pragma clang diagnostic pop
        if (isDeallocating) {
            NSLog(@"BingGo a deallocating object ...");
            return true;
        }
    }
    BOOL retVal = FALSE;
    if (originalImpl == nil) {
        IMP impl = [ObjcSeeker seekInstanceNextOirignalImpl:self selector:_cmd];
        originalImpl = (BOOL (*)(id, SEL, UIResponder*, UIResponder*, UIEvent* ))impl;
    }
    if (originalImpl != nil) {
        retVal = originalImpl(self, _cmd, arg1, arg2, arg3);
    }
    return retVal;
}

参阅链接:

  • github.com/SnowGirls/O…