WeibinZheng opened a new issue #1503: iOS中textArea组件中频繁大量复制粘贴文字点击done隐藏键盘时会出现键盘隐藏但页面没恢复正常的情况,非必现 URL: https://github.com/apache/incubator-weex/issues/1503 在iOS WeexSDK中的WXEditComponent.m类中 - (void)keyboardWillHide:(NSNotification*)notification方法中 if (![self.view isFirstResponder]) 修改成 if (![self.view isFirstResponder] && rootView.frame.origin.y == 0.f) 可以修复此问题,但是并不清楚会不会出现其他问题,还望答疑
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
