LKS_LocalInspectViewController.h 646 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // LKS_LocalInspectViewController.h
  3. // LookinServer
  4. //
  5. // Created by Li Kai on 2019/5/15.
  6. // https://lookin.work
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface LKS_LocalInspectViewController : UIViewController
  10. /// 用户点击了“退出”
  11. @property(nonatomic, copy) void (^didSelectExit)(void);
  12. - (void)highlightLayer:(CALayer *)layer;
  13. @property(nonatomic, assign) BOOL showTitleButton;
  14. - (void)clearContents;
  15. - (void)startTitleButtonAnimIfNeeded;
  16. @property(nonatomic, copy) NSArray<UIWindow *> *includedWindows;
  17. @property(nonatomic, copy) NSArray<UIWindow *> *excludedWindows;
  18. @property(nonatomic, weak) UIWindow *prevKeyWindow;
  19. @end