| 123456789101112131415161718192021 |
- //
- // MOCustomSvgaPlayerView.m
- // TIMCommon
- //
- // Created by SuperC on 2025/5/19.
- //
- #import "MOCustomSvgaPlayerView.h"
- @implementation MOCustomSvgaPlayerView
- /**
- 每个view都有这个方法,用来处理用户的操作事件。
- @return 它返回:self,代表这个view会接受用户的操作事件,返回:nil,则代表这个view不会接受用户的操作事件。
- */
- - (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event {
- return nil;
- }
- @end
|