调整键盘大小时的 UIWebView 问题
Posted
技术标签:
【中文标题】调整键盘大小时的 UIWebView 问题【英文标题】:UIWebView problems on resize for keyboard 【发布时间】:2012-12-21 12:35:28 【问题描述】:我们正在构建一个 iPhone 应用程序,它基本上是我们网站移动版本的封装。在聊天页面中选择 textarea 后,应调整 webview 的大小以适应键盘上方的区域。
但是,当在keyboardwillshow 中更改uiwebview 的框架时,文本区域的焦点会被取消。当键盘显示时再次点击 textarea 时,它确实会获得焦点。
我也尝试过更改边界而不是框架。当时 textarea 确实获得了焦点,但不知何故它锚定在原始边界的底部而不是顶部。有没有人遇到过这个问题?
编辑:我现在通过更改keyboardDidShow 而不是keyboardWillShow 上的webview 大小解决了第一个问题。但是,似乎该站点在调整大小时没有正确更新,并且该站点的标题没有出现在视图中。我将下面的代码编辑为目前的样子。
- (void)updateBounds
CGRect appFrame = [UIScreen mainScreen].applicationFrame, newFrame;
if (!kbFrame.size.width)
// no keyboard
newFrame = appFrame;
else if (kbFrame.size.width == appFrame.size.width)
// horizontal keyboard (relative to straight oriented device)
newFrame = CGRectMake(0, 0, appFrame.size.width, appFrame.size.height - kbFrame.size.height);
else
newFrame = CGRectMake(0, 0, appFrame.size.width - kbFrame.size.width, appFrame.size.height);
webview.frame = newFrame;
- (void)keyboardDidShow:(NSNotification *)note
NSLog(@"keyboardShow");
[[note.userInfo valueForKey:UIKeyboardFrameEndUserInfoKey] getValue: &kbFrame];
[self updateBounds];
- (void)keyboardWillHide:(NSNotification *)note
NSLog(@"keyboardHide");
kbFrame.size.width = 0;
[self updateBounds];
webview.frame = [UIScreen mainScreen].applicationFrame;
【问题讨论】:
顺便说一句——围绕网站包装以违反 App Store 规则,所以让它看起来是原生的。 这正是我们想要做的 ;) 【参考方案1】:最终,我们最终为网站添加了一些逻辑,而只保留了 UIWebView。我们试图实现的目标现在是使用 javascript 在网页上移动一些元素。这是次优的,但它可以在不破坏一切的情况下完成工作。
【讨论】:
以上是关于调整键盘大小时的 UIWebView 问题的主要内容,如果未能解决你的问题,请参考以下文章
调整 UIWebView 框架大小时如何禁用 UIWebView 调整内容大小