Skip to content

Instantly share code, notes, and snippets.

@FrizzleFur
Last active July 15, 2020 06:43
Show Gist options
  • Select an option

  • Save FrizzleFur/f966a40fc7b27639bcf670d1075e9f53 to your computer and use it in GitHub Desktop.

Select an option

Save FrizzleFur/f966a40fc7b27639bcf670d1075e9f53 to your computer and use it in GitHub Desktop.
UIDebuggingInfo
//添加,添加UIDebuggingInformationOverlay,在AppDelegate.m中的didFinishLaunchingWithOptions中写入
//UIDebuggingInformationOverlay
//双指同时点击状态栏显示
Class overlay = NSClassFromString(@"UIDebuggingInformationOverlay");
[[overlay class] performSelector:NSSelectorFromString(@"prepareDebuggingOverlay")];
// 直接显示
//    UIWindow *overlayWindow =  (UIWindow *)[[overlay class] performSelector:NSSelectorFromString(@"overlay")];
//    [overlayWindow performSelector:NSSelectorFromString(@"toggleVisibility")];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment