(ios) add compile-time decision for disabling UIWebView (#584)
This commit is contained in:
parent
785fc4c83d
commit
82bbe29986
@ -19,7 +19,9 @@
|
|||||||
|
|
||||||
#import "CDVInAppBrowser.h"
|
#import "CDVInAppBrowser.h"
|
||||||
#import "CDVInAppBrowserOptions.h"
|
#import "CDVInAppBrowserOptions.h"
|
||||||
|
#if !WK_WEB_VIEW_ONLY
|
||||||
#import "CDVUIInAppBrowser.h"
|
#import "CDVUIInAppBrowser.h"
|
||||||
|
#endif
|
||||||
#import "CDVWKInAppBrowser.h"
|
#import "CDVWKInAppBrowser.h"
|
||||||
#import <Cordova/CDVPluginResult.h>
|
#import <Cordova/CDVPluginResult.h>
|
||||||
|
|
||||||
@ -49,86 +51,122 @@
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
self.usewkwebview = browserOptions.usewkwebview;
|
self.usewkwebview = browserOptions.usewkwebview;
|
||||||
if(self.usewkwebview){
|
#if WK_WEB_VIEW_ONLY
|
||||||
[[CDVWKInAppBrowser getInstance] open:command];
|
[[CDVWKInAppBrowser getInstance] open:command];
|
||||||
}else{
|
#else
|
||||||
[[CDVUIInAppBrowser getInstance] open:command];
|
if(self.usewkwebview){
|
||||||
}
|
[[CDVWKInAppBrowser getInstance] open:command];
|
||||||
|
}else{
|
||||||
|
[[CDVUIInAppBrowser getInstance] open:command];
|
||||||
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)close:(CDVInvokedUrlCommand*)command
|
- (void)close:(CDVInvokedUrlCommand*)command
|
||||||
{
|
{
|
||||||
if(self.usewkwebview){
|
#if WK_WEB_VIEW_ONLY
|
||||||
[[CDVWKInAppBrowser getInstance] close:command];
|
[[CDVWKInAppBrowser getInstance] close:command];
|
||||||
}else{
|
#else
|
||||||
[[CDVUIInAppBrowser getInstance] close:command];
|
if(self.usewkwebview){
|
||||||
}
|
[[CDVWKInAppBrowser getInstance] close:command];
|
||||||
|
}else{
|
||||||
|
[[CDVUIInAppBrowser getInstance] close:command];
|
||||||
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
- (void)show:(CDVInvokedUrlCommand*)command
|
- (void)show:(CDVInvokedUrlCommand*)command
|
||||||
{
|
{
|
||||||
if(self.usewkwebview){
|
#if WK_WEB_VIEW_ONLY
|
||||||
[[CDVWKInAppBrowser getInstance] show:command];
|
[[CDVWKInAppBrowser getInstance] show:command];
|
||||||
}else{
|
#else
|
||||||
[[CDVUIInAppBrowser getInstance] show:command];
|
if(self.usewkwebview){
|
||||||
}
|
[[CDVWKInAppBrowser getInstance] show:command];
|
||||||
|
}else{
|
||||||
|
[[CDVUIInAppBrowser getInstance] show:command];
|
||||||
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)hide:(CDVInvokedUrlCommand*)command
|
- (void)hide:(CDVInvokedUrlCommand*)command
|
||||||
{
|
{
|
||||||
if(self.usewkwebview){
|
#if WK_WEB_VIEW_ONLY
|
||||||
[[CDVWKInAppBrowser getInstance] hide:command];
|
[[CDVWKInAppBrowser getInstance] hide:command];
|
||||||
}else{
|
#else
|
||||||
[[CDVUIInAppBrowser getInstance] hide:command];
|
if(self.usewkwebview){
|
||||||
}
|
[[CDVWKInAppBrowser getInstance] hide:command];
|
||||||
|
}else{
|
||||||
|
[[CDVUIInAppBrowser getInstance] hide:command];
|
||||||
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
- (void)injectScriptCode:(CDVInvokedUrlCommand*)command
|
- (void)injectScriptCode:(CDVInvokedUrlCommand*)command
|
||||||
{
|
{
|
||||||
if(self.usewkwebview){
|
#if WK_WEB_VIEW_ONLY
|
||||||
[[CDVWKInAppBrowser getInstance] injectScriptCode:command];
|
[[CDVWKInAppBrowser getInstance] injectScriptCode:command];
|
||||||
}else{
|
#else
|
||||||
[[CDVUIInAppBrowser getInstance] injectScriptCode:command];
|
if(self.usewkwebview){
|
||||||
}
|
[[CDVWKInAppBrowser getInstance] injectScriptCode:command];
|
||||||
|
}else{
|
||||||
|
[[CDVUIInAppBrowser getInstance] injectScriptCode:command];
|
||||||
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)injectScriptFile:(CDVInvokedUrlCommand*)command
|
- (void)injectScriptFile:(CDVInvokedUrlCommand*)command
|
||||||
{
|
{
|
||||||
if(self.usewkwebview){
|
#if WK_WEB_VIEW_ONLY
|
||||||
[[CDVWKInAppBrowser getInstance] injectScriptFile:command];
|
[[CDVWKInAppBrowser getInstance] injectScriptCode:command];
|
||||||
}else{
|
#else
|
||||||
[[CDVUIInAppBrowser getInstance] injectScriptFile:command];
|
if(self.usewkwebview){
|
||||||
}
|
[[CDVWKInAppBrowser getInstance] injectScriptCode:command];
|
||||||
|
}else{
|
||||||
|
[[CDVUIInAppBrowser getInstance] injectScriptCode:command];
|
||||||
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)injectStyleCode:(CDVInvokedUrlCommand*)command
|
- (void)injectStyleCode:(CDVInvokedUrlCommand*)command
|
||||||
{
|
{
|
||||||
if(self.usewkwebview){
|
#if WK_WEB_VIEW_ONLY
|
||||||
[[CDVWKInAppBrowser getInstance] injectStyleCode:command];
|
[[CDVWKInAppBrowser getInstance] injectStyleCode:command];
|
||||||
}else{
|
#else
|
||||||
[[CDVUIInAppBrowser getInstance] injectStyleCode:command];
|
if(self.usewkwebview){
|
||||||
}
|
[[CDVWKInAppBrowser getInstance] injectStyleCode:command];
|
||||||
|
}else{
|
||||||
|
[[CDVUIInAppBrowser getInstance] injectStyleCode:command];
|
||||||
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)injectStyleFile:(CDVInvokedUrlCommand*)command
|
- (void)injectStyleFile:(CDVInvokedUrlCommand*)command
|
||||||
{
|
{
|
||||||
if(self.usewkwebview){
|
#if WK_WEB_VIEW_ONLY
|
||||||
[[CDVWKInAppBrowser getInstance] injectStyleFile:command];
|
[[CDVWKInAppBrowser getInstance] injectStyleFile:command];
|
||||||
}else{
|
#else
|
||||||
[[CDVUIInAppBrowser getInstance] injectStyleFile:command];
|
if(self.usewkwebview){
|
||||||
}
|
[[CDVWKInAppBrowser getInstance] injectStyleFile:command];
|
||||||
|
}else{
|
||||||
|
[[CDVUIInAppBrowser getInstance] injectStyleFile:command];
|
||||||
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)loadAfterBeforeload:(CDVInvokedUrlCommand*)command
|
- (void)loadAfterBeforeload:(CDVInvokedUrlCommand*)command
|
||||||
{
|
{
|
||||||
if(self.usewkwebview){
|
#if WK_WEB_VIEW_ONLY
|
||||||
[[CDVWKInAppBrowser getInstance] loadAfterBeforeload:command];
|
[[CDVWKInAppBrowser getInstance] loadAfterBeforeload:command];
|
||||||
}else{
|
#else
|
||||||
[[CDVUIInAppBrowser getInstance] loadAfterBeforeload:command];
|
if(self.usewkwebview){
|
||||||
}
|
[[CDVWKInAppBrowser getInstance] loadAfterBeforeload:command];
|
||||||
|
}else{
|
||||||
|
[[CDVUIInAppBrowser getInstance] loadAfterBeforeload:command];
|
||||||
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@end
|
@end
|
@ -17,6 +17,8 @@
|
|||||||
under the License.
|
under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#if !WK_WEB_VIEW_ONLY
|
||||||
|
|
||||||
#import <Cordova/CDVPlugin.h>
|
#import <Cordova/CDVPlugin.h>
|
||||||
#import <Cordova/CDVInvokedUrlCommand.h>
|
#import <Cordova/CDVInvokedUrlCommand.h>
|
||||||
#import <Cordova/CDVScreenOrientationDelegate.h>
|
#import <Cordova/CDVScreenOrientationDelegate.h>
|
||||||
@ -89,3 +91,5 @@
|
|||||||
- (id)initWithUserAgent:(NSString*)userAgent prevUserAgent:(NSString*)prevUserAgent browserOptions: (CDVInAppBrowserOptions*) browserOptions;
|
- (id)initWithUserAgent:(NSString*)userAgent prevUserAgent:(NSString*)prevUserAgent browserOptions: (CDVInAppBrowserOptions*) browserOptions;
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
|
#endif
|
@ -17,6 +17,8 @@
|
|||||||
under the License.
|
under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#if !WK_WEB_VIEW_ONLY
|
||||||
|
|
||||||
#import "CDVUIInAppBrowser.h"
|
#import "CDVUIInAppBrowser.h"
|
||||||
#import <Cordova/CDVPluginResult.h>
|
#import <Cordova/CDVPluginResult.h>
|
||||||
#import <Cordova/CDVUserAgentUtil.h>
|
#import <Cordova/CDVUserAgentUtil.h>
|
||||||
@ -1126,4 +1128,4 @@ static CDVUIInAppBrowser* instance = nil;
|
|||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in New Issue
Block a user