fix(WKWebview): Update webview property when allowsBackForwardNavigationGestures prop changes (#173)

This commit is contained in:
Chet Corcos
2019-01-11 19:53:55 +01:00
committed by Thibault Malbranche
parent ac406bf66f
commit 4bc1dc20fd
+7
View File
@@ -125,6 +125,13 @@ static NSString *const MessageHanderName = @"ReactNative";
} }
} }
// Update webview property when the component prop changes.
- (void)setAllowsBackForwardNavigationGestures:(BOOL)allowsBackForwardNavigationGestures {
_allowsBackForwardNavigationGestures = allowsBackForwardNavigationGestures;
_webView.allowsBackForwardNavigationGestures = _allowsBackForwardNavigationGestures;
}
- (void)removeFromSuperview - (void)removeFromSuperview
{ {
if (_webView) { if (_webView) {