CB-10040 - Compile Error in InAppBrowser Plugin for iOS - No known instance method for selector 'URLIsWhitelisted:'
This commit is contained in:
parent
1cd9205eb5
commit
bc9036d90a
@ -231,16 +231,12 @@
|
|||||||
|
|
||||||
- (void)openInCordovaWebView:(NSURL*)url withOptions:(NSString*)options
|
- (void)openInCordovaWebView:(NSURL*)url withOptions:(NSString*)options
|
||||||
{
|
{
|
||||||
if ([self.commandDelegate URLIsWhitelisted:url]) {
|
|
||||||
NSURLRequest* request = [NSURLRequest requestWithURL:url];
|
NSURLRequest* request = [NSURLRequest requestWithURL:url];
|
||||||
#ifdef __CORDOVA_4_0_0
|
#ifdef __CORDOVA_4_0_0
|
||||||
[self.webViewEngine loadRequest:request];
|
[self.webViewEngine loadRequest:request];
|
||||||
#else
|
#else
|
||||||
[self.webView loadRequest:request];
|
[self.webView loadRequest:request];
|
||||||
#endif
|
#endif
|
||||||
} else { // this assumes the InAppBrowser can be excepted from the white-list
|
|
||||||
[self openInInAppBrowser:url withOptions:options];
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)openInSystem:(NSURL*)url
|
- (void)openInSystem:(NSURL*)url
|
||||||
|
Loading…
Reference in New Issue
Block a user