LayoutLoopHunter
LayoutLoopHunter copied to clipboard
Runtime-based setup for tracking autolayout feedback loops
Results
1
LayoutLoopHunter issues
Sort by
recently updated
recently updated
newest added
I used the following example code in [AppCoda](https://www.appcoda.com/layout-feedback-loop/#comment-112433) ``` class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() LayoutLoopHunter.setUp(for: view) { print("Hello, world") } } override func viewDidLayoutSubviews(){ super.viewDidLayoutSubviews() view.setNeedsLayout()...