We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9537cf commit 9aae62eCopy full SHA for 9aae62e
1 file changed
AQWebView/AQWebView.m
@@ -30,7 +30,10 @@ - (instancetype)initWithFrame:(CGRect)frame
30
31
_webView = [[WKWebView alloc] initWithFrame:self.bounds];
32
_webView.allowsBackForwardNavigationGestures = YES;
33
- _webView.allowsLinkPreview = YES;
+
34
+ // Disabled because it feels less like an app if you can preview links
35
+ //_webView.allowsLinkPreview = YES;
36
37
_webView.navigationDelegate = self;
38
[self addSubview:_webView];
39
0 commit comments