i'm trying to customize the Cordova InAppBrowser to add a top margin in the webView.
I would like to use the in app browser but showing at the top of the screen a 50px navigation bar with a back button to close the InAppBrowser.
Currently working with the iOS version, i'm trying to change the origin of the view to y = 50, but it's not working.
CGRect theFrame = self.inAppBrowserViewController.view.frame;
theFrame.origin.y = 50;
theFrame.size.height = theFrame.size.height - 50;
self.inAppBrowserViewController.view.frame = theFrame;
It always leave me free space at the bottom of the view.