RQDebugTouchView.h 313 B

1234567891011121314151617
  1. //
  2. // RQDebugTouchView.h
  3. // RQCommon
  4. //
  5. // Created by 张嵘 on 2018/11/23.
  6. // Copyright © 2018 张嵘. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface RQDebugTouchView : UIImageView
  10. ///init
  11. @singleton(RQDebugTouchView);
  12. /// 设置显示or隐藏
  13. - (void)setHide:(BOOL)hide;
  14. - (BOOL)isHide;
  15. @end