This commit is contained in:
DDIsFriend
2023-08-23 09:24:40 +08:00
parent 6bd037c5dd
commit 63ca919ed5
494 changed files with 35308 additions and 6623 deletions

View File

@@ -0,0 +1,70 @@
//
// Example
// man
//
// Created by man 11/11/2018.
// Copyright © 2020 man. All rights reserved.
//
import UIKit
class CocoaDebugViewController: UIViewController {
var bubble = Bubble(frame: CGRect(origin: .zero, size: Bubble.size))
var uiBlockingBubble = UIBlockingBubble(frame: CGRect(origin: .zero, size: UIBlockingBubble.size))
override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
bubble.updateOrientation(newSize: size)
}
override func viewDidLoad() {
super.viewDidLoad()
self.view.backgroundColor = .clear
bubble.center = Bubble.originalPosition
bubble.delegate = self
view.addSubview(bubble)
}
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
WindowHelper.shared.displayedList = false
if CocoaDebugSettings.shared.enableUIBlockingMonitoring {
view.addSubview(uiBlockingBubble)
}
}
override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)
if CocoaDebugSettings.shared.enableUIBlockingMonitoring {
uiBlockingBubble.updateFrame()
}
}
override func viewDidDisappear(_ animated: Bool) {
super.viewDidDisappear(animated)
if CocoaDebugSettings.shared.enableUIBlockingMonitoring {
uiBlockingBubble.removeFromSuperview()
}
}
func shouldReceive(point: CGPoint) -> Bool {
if WindowHelper.shared.displayedList {
return true
}
return bubble.frame.contains(point)
}
}
//MARK: - BubbleDelegate
extension CocoaDebugViewController: BubbleDelegate {
func didTapBubble() {
WindowHelper.shared.displayedList = true
let storyboard = UIStoryboard(name: "Manager", bundle: Bundle(for: CocoaDebug.self))
guard let vc = storyboard.instantiateInitialViewController() else {return}
vc.view.backgroundColor = .white
vc.modalPresentationStyle = .fullScreen
self.present(vc, animated: true, completion: nil)
}
}