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.
Webビューを含むNavigationViewコントローラーがあります。ナビゲーションビューのトップバーは「TraslucentBlackNavigationbar」です。
Webビューには、「textarea」html要素を含むhtmlが表示されます。ユーザーがテキストエリアに入力しようとすると、「textarea」の上部が「TraslucentBlackNavigationbar」で覆われていることに気付きました。
これを修正する方法はありますか?
UIWebViewのフレームを44ポイント下に調整する必要があります(UINavigationBarの標準の高さ)
webView.frame = CGRectMake(webView.frame.origin.x、(webView.frame.origin.y + 44)、webView.frame.size.width、webView.frame.size.height);