Tracking UIKit access on main thread
[](https://travis-ci.org/Khoa Pham/MainThreadGuard)
This is just a Swift port of PSPDFUIKitMainThreadGuard.m using swizzling on UIView
extension
- Just import the framework
- setNeedsLayout
- setNeedsDisplay
- setNeedsDisplayInRect:
Try accessing UIKit from another thread and MainThreadGuard will assert
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
let label = UILabel()
view.addSubview(label)
dispatch_async(dispatch_get_global_queue(QOS_CLASS_BACKGROUND, 0)) {
label.text = "Setting text on background thread"
}
}
}
MainThreadGuard is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "MainThreadGuard"
Credit goes to PSPDFUIKitMainThreadGuard.m
Khoa Pham, onmyway133@gmail.com
MainThreadGuard is available under the MIT license. See the LICENSE file for more info.