mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Delegate to Web view for original story so you can scroll it with the keyboard (#826).
This commit is contained in:
parent
2f6e6540bb
commit
c659f1df04
1 changed files with 5 additions and 0 deletions
|
@ -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]]) {
|
||||
|
|
Loading…
Add table
Reference in a new issue