LKS_LocalInspectManager.h 430 B

123456789101112131415161718192021
  1. //
  2. // LKS_LocalInspectManager.h
  3. // LookinServer
  4. //
  5. // Created by Li Kai on 2019/5/8.
  6. // https://lookin.work
  7. //
  8. #import "LookinDefines.h"
  9. @interface LKS_LocalInspectContainerWindow : UIWindow
  10. @end
  11. @interface LKS_LocalInspectManager : NSObject
  12. + (instancetype)sharedInstance;
  13. - (void)startLocalInspectWithIncludedWindows:(NSArray<UIWindow *> *)includedWindows excludedWindows:(NSArray<UIWindow *> *)excludedWindows;
  14. @end