I'm building a web browser an recently I came across an error while trying to login using my Google account on a website.
This is strange because I checked the user agent of my app and Safari's and they are both identical.
Any suggestions?
UPDATE
The WKWebView is nested 3 levels deep inside a tree of custom UIViews.
Here's the initialization code:
_webView = [[WKWebView alloc] init];
_webView.allowsBackForwardNavigationGestures = NO;
_webView.allowsLinkPreview = NO;
_webView.navigationDelegate = self;
_webView.UIDelegate = self;
_webView.frame = CGRectMake(0.0, 0.0, self.contentView.frame.size.width, self.contentView.frame.size.height);
[self.contentView addSubview:_webView];