In my iPad App I have a modal view (UIViewController with modal presentation style UIModalPresentationPageSheet)
UIViewController
UIModalPresentationPageSheet
Inside the view is a UIWeb
I saw there are many suggestions with loading blank page. That is really bad approach.
It will cause your webview to be blank if, let say you push you another view on top of it.
Most simple solution is to reload the view with:
Swift
webView.reload()
Obj-C
[webView reload]