1234567891011121314151617 |
- //
- // RQDebugTouchView.h
- // RQCommon
- //
- // Created by 张嵘 on 2018/11/23.
- // Copyright © 2018 张嵘. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface RQDebugTouchView : UIImageView
- ///init
- @singleton(RQDebugTouchView);
- /// 设置显示or隐藏
- - (void)setHide:(BOOL)hide;
- - (BOOL)isHide;
- @end
|