MOCustomSvgaPlayerView.m 479 B

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