Swiftgram/LegacyComponents/TGPhotoPaintSparseView.m
2017-07-28 16:50:06 +03:00

15 lines
270 B
Objective-C

#import "TGPhotoPaintSparseView.h"
@implementation TGPhotoPaintSparseView
- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event
{
UIView *view = [super hitTest:point withEvent:event];
if (view == self)
return nil;
return view;
}
@end