I am fairly new to iOS development and I\'m using a WKWebView
to display a page that plays a video using the Vimeo Player. When the app starts up, it shows the
You don't need to reload the entire web page. You just need to reload its input views. Make sure you have set constraints to web view properly and then add below code while changing orientation.
// Reload inputs so that webview can adjust its content according to orientation
[self.webView reloadInputViews];