//添加,添加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")];
Last active
July 15, 2020 06:43
-
-
Save FrizzleFur/f966a40fc7b27639bcf670d1075e9f53 to your computer and use it in GitHub Desktop.
UIDebuggingInfo
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment