├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Example ├── MainThreadChecker.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── MainThreadChecker-Example.xcscheme ├── MainThreadChecker.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── MainThreadChecker │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── MTCAppDelegate.h │ ├── MTCAppDelegate.m │ ├── MTCTestView.h │ ├── MTCTestView.m │ ├── MTCViewController.h │ ├── MTCViewController.m │ ├── MainThreadChecker-Info.plist │ ├── MainThreadChecker-Prefix.pch │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── MainThreadChecker.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── MainThreadChecker │ │ ├── MainThreadChecker-Info.plist │ │ ├── MainThreadChecker-dummy.m │ │ ├── MainThreadChecker-prefix.pch │ │ ├── MainThreadChecker-umbrella.h │ │ ├── MainThreadChecker.debug.xcconfig │ │ ├── MainThreadChecker.modulemap │ │ └── MainThreadChecker.release.xcconfig │ │ ├── Pods-MainThreadChecker_Example │ │ ├── Pods-MainThreadChecker_Example-Info.plist │ │ ├── Pods-MainThreadChecker_Example-acknowledgements.markdown │ │ ├── Pods-MainThreadChecker_Example-acknowledgements.plist │ │ ├── Pods-MainThreadChecker_Example-dummy.m │ │ ├── Pods-MainThreadChecker_Example-frameworks.sh │ │ ├── Pods-MainThreadChecker_Example-umbrella.h │ │ ├── Pods-MainThreadChecker_Example.debug.xcconfig │ │ ├── Pods-MainThreadChecker_Example.modulemap │ │ └── Pods-MainThreadChecker_Example.release.xcconfig │ │ └── Pods-MainThreadChecker_Tests │ │ ├── Pods-MainThreadChecker_Tests-Info.plist │ │ ├── Pods-MainThreadChecker_Tests-acknowledgements.markdown │ │ ├── Pods-MainThreadChecker_Tests-acknowledgements.plist │ │ ├── Pods-MainThreadChecker_Tests-dummy.m │ │ ├── Pods-MainThreadChecker_Tests-umbrella.h │ │ ├── Pods-MainThreadChecker_Tests.debug.xcconfig │ │ ├── Pods-MainThreadChecker_Tests.modulemap │ │ └── Pods-MainThreadChecker_Tests.release.xcconfig └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── MainThreadChecker.podspec ├── MainThreadChecker ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── MainThreadChecker.h │ └── MainThreadChecker.m ├── README.md └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.1.0 2 | - 增加系统 UI API 子线程监控能力,并输出堆栈 3 | - 支持自定义 API 添加到监控 -------------------------------------------------------------------------------- /Example/MainThreadChecker.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/MainThreadChecker.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/MainThreadChecker.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/MainThreadChecker.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/MainThreadChecker.xcodeproj/xcshareddata/xcschemes/MainThreadChecker-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/MainThreadChecker.xcodeproj/xcshareddata/xcschemes/MainThreadChecker-Example.xcscheme -------------------------------------------------------------------------------- /Example/MainThreadChecker.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/MainThreadChecker.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/MainThreadChecker.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/MainThreadChecker.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/MainThreadChecker/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/MainThreadChecker/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/MainThreadChecker/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/MainThreadChecker/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/MainThreadChecker/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/MainThreadChecker/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/MainThreadChecker/MTCAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/MainThreadChecker/MTCAppDelegate.h -------------------------------------------------------------------------------- /Example/MainThreadChecker/MTCAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/MainThreadChecker/MTCAppDelegate.m -------------------------------------------------------------------------------- /Example/MainThreadChecker/MTCTestView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/MainThreadChecker/MTCTestView.h -------------------------------------------------------------------------------- /Example/MainThreadChecker/MTCTestView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/MainThreadChecker/MTCTestView.m -------------------------------------------------------------------------------- /Example/MainThreadChecker/MTCViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/MainThreadChecker/MTCViewController.h -------------------------------------------------------------------------------- /Example/MainThreadChecker/MTCViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/MainThreadChecker/MTCViewController.m -------------------------------------------------------------------------------- /Example/MainThreadChecker/MainThreadChecker-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/MainThreadChecker/MainThreadChecker-Info.plist -------------------------------------------------------------------------------- /Example/MainThreadChecker/MainThreadChecker-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/MainThreadChecker/MainThreadChecker-Prefix.pch -------------------------------------------------------------------------------- /Example/MainThreadChecker/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/MainThreadChecker/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/MainThreadChecker/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/MainThreadChecker.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/Pods/Local Podspecs/MainThreadChecker.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MainThreadChecker/MainThreadChecker-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/Pods/Target Support Files/MainThreadChecker/MainThreadChecker-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MainThreadChecker/MainThreadChecker-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/Pods/Target Support Files/MainThreadChecker/MainThreadChecker-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MainThreadChecker/MainThreadChecker-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/Pods/Target Support Files/MainThreadChecker/MainThreadChecker-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MainThreadChecker/MainThreadChecker-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/Pods/Target Support Files/MainThreadChecker/MainThreadChecker-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MainThreadChecker/MainThreadChecker.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/Pods/Target Support Files/MainThreadChecker/MainThreadChecker.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MainThreadChecker/MainThreadChecker.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/Pods/Target Support Files/MainThreadChecker/MainThreadChecker.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MainThreadChecker/MainThreadChecker.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/Pods/Target Support Files/MainThreadChecker/MainThreadChecker.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MainThreadChecker_Example/Pods-MainThreadChecker_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/Pods/Target Support Files/Pods-MainThreadChecker_Example/Pods-MainThreadChecker_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MainThreadChecker_Example/Pods-MainThreadChecker_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/Pods/Target Support Files/Pods-MainThreadChecker_Example/Pods-MainThreadChecker_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MainThreadChecker_Example/Pods-MainThreadChecker_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/Pods/Target Support Files/Pods-MainThreadChecker_Example/Pods-MainThreadChecker_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MainThreadChecker_Example/Pods-MainThreadChecker_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/Pods/Target Support Files/Pods-MainThreadChecker_Example/Pods-MainThreadChecker_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MainThreadChecker_Example/Pods-MainThreadChecker_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/Pods/Target Support Files/Pods-MainThreadChecker_Example/Pods-MainThreadChecker_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MainThreadChecker_Example/Pods-MainThreadChecker_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/Pods/Target Support Files/Pods-MainThreadChecker_Example/Pods-MainThreadChecker_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MainThreadChecker_Example/Pods-MainThreadChecker_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/Pods/Target Support Files/Pods-MainThreadChecker_Example/Pods-MainThreadChecker_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MainThreadChecker_Example/Pods-MainThreadChecker_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/Pods/Target Support Files/Pods-MainThreadChecker_Example/Pods-MainThreadChecker_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MainThreadChecker_Example/Pods-MainThreadChecker_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/Pods/Target Support Files/Pods-MainThreadChecker_Example/Pods-MainThreadChecker_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MainThreadChecker_Tests/Pods-MainThreadChecker_Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/Pods/Target Support Files/Pods-MainThreadChecker_Tests/Pods-MainThreadChecker_Tests-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MainThreadChecker_Tests/Pods-MainThreadChecker_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/Pods/Target Support Files/Pods-MainThreadChecker_Tests/Pods-MainThreadChecker_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MainThreadChecker_Tests/Pods-MainThreadChecker_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/Pods/Target Support Files/Pods-MainThreadChecker_Tests/Pods-MainThreadChecker_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MainThreadChecker_Tests/Pods-MainThreadChecker_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/Pods/Target Support Files/Pods-MainThreadChecker_Tests/Pods-MainThreadChecker_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MainThreadChecker_Tests/Pods-MainThreadChecker_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/Pods/Target Support Files/Pods-MainThreadChecker_Tests/Pods-MainThreadChecker_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MainThreadChecker_Tests/Pods-MainThreadChecker_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/Pods/Target Support Files/Pods-MainThreadChecker_Tests/Pods-MainThreadChecker_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MainThreadChecker_Tests/Pods-MainThreadChecker_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/Pods/Target Support Files/Pods-MainThreadChecker_Tests/Pods-MainThreadChecker_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MainThreadChecker_Tests/Pods-MainThreadChecker_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/Pods/Target Support Files/Pods-MainThreadChecker_Tests/Pods-MainThreadChecker_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/LICENSE -------------------------------------------------------------------------------- /MainThreadChecker.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/MainThreadChecker.podspec -------------------------------------------------------------------------------- /MainThreadChecker/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MainThreadChecker/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MainThreadChecker/Classes/MainThreadChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/MainThreadChecker/Classes/MainThreadChecker.h -------------------------------------------------------------------------------- /MainThreadChecker/Classes/MainThreadChecker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/MainThreadChecker/Classes/MainThreadChecker.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasticLBP/MainThreadChecker/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------