I am developing hybrid app using WKWebView
everything is working fine in all size simulators but when i am running code in iPhone the progress bar is showing on the screen all the time and the view is appear in status bar ,also when I scroll the screen in status bar I can see the scrolling of contents of my app.
var webview:WKWebView!
let configuration = WKWebViewConfiguration()
wkwebview = WKWebView(frame:self.view.frame,configuration:configuration)
self.view = wkwebview
wkwebview.load(req as URLRequest)
Can anyone knows what is this ?? I am using Xcode 9.2 and macOS Sierra version 10.12.6
Edited :
If I stops Internet it shows view in the iphone(fine).
It is also working fine in iphone 6 and above.