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; }