MOTabBarButton.m 369 B

1234567891011121314151617
  1. //
  2. // MOTabBarButton.m
  3. // MiMoLive
  4. //
  5. // Created by MiMo on 2025/6/30.
  6. //
  7. #import "MOTabBarButton.h"
  8. @implementation MOTabBarButton
  9. - (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event {
  10. CGRect expandedBounds = CGRectInset(self.bounds, 0, -20); // Expand the bounds upwards by 20 points
  11. return CGRectContainsPoint(expandedBounds, point);
  12. }
  13. @end