This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import UIKit | |
| import ObjectiveC.runtime | |
| /// An enum that displays UIKitCore's `UIDebuggingInformationOverlay`. | |
| enum DebuggingOverlay { | |
| /// Shows the `UIDebuggingInformationOverlay`. | |
| @available(iOS 13, *) | |
| static func show() { | |
| struct Once { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @import ObjectiveC.runtime; | |
| @import UIKit; | |
| @interface DebuggingOverlay: NSObject | |
| + (void)show API_AVAILABLE(ios(13)); | |
| @end | |
| @implementation DebuggingOverlay | |
| /// Shows the `UIDebuggingInformationOverlay`. |