uiwebview获得焦点后的位移值&键盘外观

发布于 2024-12-01 14:26:31 字数 221 浏览 3 评论 0原文

我在屏幕上有 UIWebView 和其他 UI 元素。在我单击 Web 视图内的文本字段后,整个 Web 视图正在向上移动(它正在移动 Web 视图内容,而不是 Web 视图容器,对吗?)。显示键盘后是否有可能找到位移值来移动其他元素?我在键盘出现之前/之后获取了 uiwebview 的图层位置值,但似乎没有变化......

顺便说一句。简而言之,层和框架之间的区别是什么?

感谢您的任何帮助。

I have UIWebView among with other UI elements on the screen. After I click on textfield inside a webview, whole webview is moving up (it is moving webview content, not a webview containter, right?). Is there possibility to find a displacement value after showing up a keyboard to move other elements as well? I am getting uiwebview's layer position values before/after keyboard appereance but there are not seeming to be changing...

btw. what's, in short, difference between layer and frame?

Thanks for any help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

哥,最终变帅啦 2024-12-08 14:26:31

我的解决方案:

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(resize:) name:UIKeyboardWillShowNotification object:nil];

(void) test
{
    CGRect rect = CGRectMake(0,0,320,460);
    self.webView.scrollView.bounds = rect;
}

(void) resize:(id)sender
{
    [self performSelector:@selector(test) withObject:nil afterDelay:0];
}

My solution:

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(resize:) name:UIKeyboardWillShowNotification object:nil];

(void) test
{
    CGRect rect = CGRectMake(0,0,320,460);
    self.webView.scrollView.bounds = rect;
}

(void) resize:(id)sender
{
    [self performSelector:@selector(test) withObject:nil afterDelay:0];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文