KSTouchCapturingWindow.h 434 B

12345678910111213141516171819202122232425
  1. //
  2. // KSTouchCapturingWindow.h
  3. // TeacherDaya
  4. //
  5. // Created by Kyle on 2020/7/1.
  6. // Copyright © 2020 DayaMusic. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface KSTouchCapturingWindow : UIWindow {
  11. NSMutableArray *views;
  12. @private
  13. UIView *touchView;
  14. }
  15. - (void)addViewForTouchPriority:(UIView *)view;
  16. - (void)removeViewForTouchPriority:(UIView *)view;
  17. @end
  18. NS_ASSUME_NONNULL_END