I'm writing a Phonegap/Cordova plugin that needs to insert a native UIView behind the webView that Cordova provides. I've tried doing the following:
[self.webView.superview insertSubview:myView belowSubview:self.webView];
and
[self.webView.superview addSubview:myView];
Both of these added myView on top of the webView.
Is there any way to do this?
You could try:
[self.webView.superview addSubview:myView];
[self.webView.superview bringSubviewToFront:self.webView];
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With