XYMakingFriendsMainSkillMaskView.m 507 B

12345678910111213141516171819202122
  1. //
  2. // XYMakingFriendsMainSkillMaskView.m
  3. // Starbuds
  4. //
  5. // Created by 翟玉磊 on 2020/12/7.
  6. // Copyright © 2020 翟玉磊. All rights reserved.
  7. //
  8. #import "XYMakingFriendsMainSkillMaskView.h"
  9. @implementation XYMakingFriendsMainSkillMaskView
  10. /// 如果是当前自己则不传递触发事件
  11. - (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event {
  12. UIView *hitView = [super hitTest:point withEvent:event];
  13. if (hitView == self) {
  14. return nil;
  15. }
  16. return hitView;
  17. }
  18. @end