iiicp / KeyboardforChat

仿微信聊天键盘,无污染,无任何第三方,使用简单
506 stars 118 forks source link

显示问题 #11

Open Liqiankun opened 7 years ago

Liqiankun commented 7 years ago

wechatimg1 找了好久没有找到原因! @bbbcode 给诊断一下!

Liqiankun commented 7 years ago

初步判断是  IQKeyboardManager的原因,我们的项目中有这个库我试了一下如果有这个库就会出现上边的问题,没有就不会!和本库没有关系! 

Liqiankun commented 7 years ago

IQKeyboardManager中的方法,毁就毁在这个地方 

-(void)textFieldViewDidEndEditing:(NSNotification*)notification
{
    [_textFieldView.window removeGestureRecognizer:tapGesture];

    [UIView animateWithDuration:animationDuration animations:^{
        _textFieldView.frame = textFieldViewIntialFrame;
    }];

    //Setting object to nil
    _textFieldView = nil;
}