| 12345678910111213141516171819202122232425 |
- //
- // KSTouchCapturingWindow.h
- // TeacherDaya
- //
- // Created by Kyle on 2020/7/1.
- // Copyright © 2020 DayaMusic. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface KSTouchCapturingWindow : UIWindow {
- NSMutableArray *views;
-
- @private
- UIView *touchView;
- }
- - (void)addViewForTouchPriority:(UIView *)view;
- - (void)removeViewForTouchPriority:(UIView *)view;
- @end
- NS_ASSUME_NONNULL_END
|