// // KSTouchCapturingWindow.h // TeacherDaya // // Created by Kyle on 2020/7/1. // Copyright © 2020 DayaMusic. All rights reserved. // #import 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