I have a WKWebView which should load the following url:
https://buchung.salonmeister.de/place/#offer-details-page?id=907599&venueId=301655
// Add plist file
NSAllowsArbitraryLoads
NSExceptionDomains
google.com
NSExceptionAllowsInsecureHTTPLoads
NSIncludesSubdomains
if WKWebView not support then declare .m file below code:
@interface WebScannerViewController()
{
WKWebView *webView;
}
@end
@implementation WebScannerViewController
- (void)viewDidLoad {
[super viewDidLoad];
webView.hidden=YES;
webView.UIDelegate = self;
webView.navigationDelegate = self;
self.loadingSign.hidden = NO;
webView.frame=CGRectMake(0, 94, Width, Height-128);
}