Skip to content

Commit 9aae62e

Browse files
committed
Disable link preview, doesnt exist in iOS 8 or 9
1 parent a9537cf commit 9aae62e

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

AQWebView/AQWebView.m

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@ - (instancetype)initWithFrame:(CGRect)frame
3030

3131
_webView = [[WKWebView alloc] initWithFrame:self.bounds];
3232
_webView.allowsBackForwardNavigationGestures = YES;
33-
_webView.allowsLinkPreview = YES;
33+
34+
// Disabled because it feels less like an app if you can preview links
35+
//_webView.allowsLinkPreview = YES;
36+
3437
_webView.navigationDelegate = self;
3538
[self addSubview:_webView];
3639

0 commit comments

Comments
 (0)