[iOS] How scroll at overflow content in Webview

Hi, I’m developing iOS app with Webview.

How do I scroll at overflow contents at Webview?

I added InAppBrowser plugin.
and add main URL to whitelist. so, The URL is open with Webview without statusbar like below.

long sentence exists as invisible content.

But, Scroll not working.
Webview is opened by below code.

var appURL = 'https://example.com'; // this is added to whitelist.
var ref = window.open(appURL, '_self', '');

I have took a video screenshot of the situation.

video deleted…

My environment is…

Your system information:

Cordova CLI: 5.4.1
Gulp version:  CLI version 3.9.0
Gulp local:   Local version 3.9.0
Ionic Version: 1.2.4
Ionic CLI Version: 1.7.13
Ionic App Lib Version: 0.6.5
ios-deploy version: 1.8.3
ios-sim version: 5.0.4
OS: Mac OS X El Capitan
Node Version: v5.3.0
Xcode version: Xcode 7.2 Build version 7C68

I had the same problem.

You have to enable scroll in native app that use webView:

self.webView.scrollView.scrollEnabled = YES;

and there is one possibility to do this from javascript by cordova keyboard lib:

cordova.plugins.Keyboard.disableScroll(false);

So just before redirecting webView to external url, run:
cordova.plugins.Keyboard.disableScroll(false);