[ios] Fixed touch handling for search & route views.

This commit is contained in:
Ilya Grechuhin 2015-06-29 18:08:25 +03:00 committed by Alex Zolotarev
parent 1864e76a65
commit a115f85ffa
2 changed files with 12 additions and 0 deletions

View file

@ -351,4 +351,10 @@ extern NSString * const kAlohalyticsTapEventKey;
return _timeLeftLabel;
}
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
// Prevent super call to stop event propagation
// [super touchesBegan:touches withEvent:event];
}
@end

View file

@ -802,6 +802,12 @@ static BOOL keyboardLoaded = NO;
return [[NSLocale preferredLanguages] firstObject];
}
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
// Prevent super call to stop event propagation
// [super touchesBegan:touches withEvent:event];
}
#pragma mark - Properties
- (CGRect)infoRect