Skip to content

Commit a33bde0

Browse files
authored
fix(ios): set delaysContentTouches to YES (#563)
1 parent 3735189 commit a33bde0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ios/ReactNativePageView.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ - (void)embed {
103103
if([subview isKindOfClass:UIScrollView.class]){
104104
((UIScrollView *)subview).delegate = self;
105105
((UIScrollView *)subview).keyboardDismissMode = _dismissKeyboard;
106-
((UIScrollView *)subview).delaysContentTouches = NO;
106+
((UIScrollView *)subview).delaysContentTouches = YES;
107107
self.scrollView = (UIScrollView *)subview;
108108
}
109109
}

0 commit comments

Comments
 (0)