Delegate to Web view for original story so you can scroll it with the keyboard (#826).

This commit is contained in:
Nicholas Riley 2015-11-22 21:22:38 -05:00
parent 2f6e6540bb
commit c659f1df04

View file

@ -173,6 +173,11 @@
return YES;
}
- (BOOL)becomeFirstResponder {
// delegate to Web view
return [webView becomeFirstResponder];
}
- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer {
CGPoint velocity = CGPointMake(0, 0);
if ([gestureRecognizer isKindOfClass:[UIPanGestureRecognizer class]]) {