Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的应用程序由全屏驱动UIWebView。它工作得很好,除非当键盘被调出时,视图被移动了大约 10 个像素,留下了一个白色的间隙(见下面的截图)。
UIWebView
有谁知道是什么原因造成的,是否有任何解决方案或解决方法?
更新:更具体地说,UIWebView不是转移,而是 HTML 内容转移。
您可以尝试禁用 webview 的缩放:
webview.scrollView.delegate = self; -(UIView*)viewForZoomingInScrollView:(UIScrollView*)scrollView { return nil; }