我有UIWebView
个登录字段,需要用户输入iPad应用。视图以模态方式呈现,当呈现横向键盘时,会导致UIWebView
向上滚动。
这是错误发生的地方 - UIWebView
包含一个点击延迟,我没有找到可靠的解决方案。 (我正在使用OAuth
,因此任何Javascript
注射都无法可靠地工作)。键盘出现时,当我点击输入字段时,在视图自动滚动并且不在正确的位置后注册点击。
基本上,这是因为我点击顶部输入字段,并且水龙头的注册量比它应该低约20px,因为视图正被键盘移动。
我已经尝试阻止UIWebView
滚动,但键盘总是让它无论如何都会移动。
我已经尝试注入Javascript
以消除分接延迟,但在那里也没有取得成功。
感谢任何帮助!
答案 0 :(得分:2)
我正在努力解决同样的问题。我还没有解决点击偏移问题,但是关闭点击延迟你可以使用:
[[self.webView scrollView] setDelaysContentTouches:NO];
不确定您是否已找到此页面,但您可以添加键盘通知的监听器并自行操作滚动。这是Apple的文档链接: https://developer.apple.com/library/ios/documentation/StringsTextFonts/Conceptual/TextAndWebiPhoneOS/KeyboardManagement/KeyboardManagement.html
以下是与操纵视图相关的链接代码:
// Call this method somewhere in your view controller setup code.
- (void)registerForKeyboardNotifications
{
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(keyboardWasShown:)
name:UIKeyboardDidShowNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(keyboardWillBeHidden:)
name:UIKeyboardWillHideNotification object:nil];
}
// Called when the UIKeyboardDidShowNotification is sent.
- (void)keyboardWasShown:(NSNotification*)aNotification
{
NSDictionary* info = [aNotification userInfo];
CGSize kbSize = [[info objectForKey:UIKeyboardFrameBeginUserInfoKey] CGRectValue].size;
UIEdgeInsets contentInsets = UIEdgeInsetsMake(0.0, 0.0, kbSize.height, 0.0);
scrollView.contentInset = contentInsets;
scrollView.scrollIndicatorInsets = contentInsets;
// If active text field is hidden by keyboard, scroll it so it's visible
// Your app might not need or want this behavior.
CGRect aRect = self.view.frame;
aRect.size.height -= kbSize.height;
if (!CGRectContainsPoint(aRect, activeField.frame.origin) ) {
[self.scrollView scrollRectToVisible:activeField.frame animated:YES];
}
}
// Called when the UIKeyboardWillHideNotification is sent
- (void)keyboardWillBeHidden:(NSNotification*)aNotification
{
UIEdgeInsets contentInsets = UIEdgeInsetsZero;
scrollView.contentInset = contentInsets;
scrollView.scrollIndicatorInsets = contentInsets;
}
似乎uiwebview中的一些热门区域并不总是随着键盘向上移动。解决这个问题的一个肮脏的方法是在按钮/ etc上放置一个不可见的文本div,并使用一些空格调用一个javascript函数来尝试完成任何未注册的触摸事件。像这样:
<div id="someBtn" onclick="tryAction();"> </div>
我希望这有助于或至少为您指明一个有用的方向。