├── .gitignore ├── LICENSE ├── PMainThreadWatcherDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── gaofeng.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── PMainThreadWatcherDemo.xcscheme │ └── xcschememanagement.plist ├── PMainThreadWatcherDemo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── PMainThreadWatcher │ ├── PMainThreadWatcher.h │ └── PMainThreadWatcher.m ├── ViewController.h ├── ViewController.m └── main.m └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/music4kid/PMainThreadWatcher/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/music4kid/PMainThreadWatcher/HEAD/LICENSE -------------------------------------------------------------------------------- /PMainThreadWatcherDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/music4kid/PMainThreadWatcher/HEAD/PMainThreadWatcherDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PMainThreadWatcherDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/music4kid/PMainThreadWatcher/HEAD/PMainThreadWatcherDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PMainThreadWatcherDemo.xcodeproj/xcuserdata/gaofeng.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/music4kid/PMainThreadWatcher/HEAD/PMainThreadWatcherDemo.xcodeproj/xcuserdata/gaofeng.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /PMainThreadWatcherDemo.xcodeproj/xcuserdata/gaofeng.xcuserdatad/xcschemes/PMainThreadWatcherDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/music4kid/PMainThreadWatcher/HEAD/PMainThreadWatcherDemo.xcodeproj/xcuserdata/gaofeng.xcuserdatad/xcschemes/PMainThreadWatcherDemo.xcscheme -------------------------------------------------------------------------------- /PMainThreadWatcherDemo.xcodeproj/xcuserdata/gaofeng.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/music4kid/PMainThreadWatcher/HEAD/PMainThreadWatcherDemo.xcodeproj/xcuserdata/gaofeng.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /PMainThreadWatcherDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/music4kid/PMainThreadWatcher/HEAD/PMainThreadWatcherDemo/AppDelegate.h -------------------------------------------------------------------------------- /PMainThreadWatcherDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/music4kid/PMainThreadWatcher/HEAD/PMainThreadWatcherDemo/AppDelegate.m -------------------------------------------------------------------------------- /PMainThreadWatcherDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/music4kid/PMainThreadWatcher/HEAD/PMainThreadWatcherDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /PMainThreadWatcherDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/music4kid/PMainThreadWatcher/HEAD/PMainThreadWatcherDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /PMainThreadWatcherDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/music4kid/PMainThreadWatcher/HEAD/PMainThreadWatcherDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /PMainThreadWatcherDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/music4kid/PMainThreadWatcher/HEAD/PMainThreadWatcherDemo/Info.plist -------------------------------------------------------------------------------- /PMainThreadWatcherDemo/PMainThreadWatcher/PMainThreadWatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/music4kid/PMainThreadWatcher/HEAD/PMainThreadWatcherDemo/PMainThreadWatcher/PMainThreadWatcher.h -------------------------------------------------------------------------------- /PMainThreadWatcherDemo/PMainThreadWatcher/PMainThreadWatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/music4kid/PMainThreadWatcher/HEAD/PMainThreadWatcherDemo/PMainThreadWatcher/PMainThreadWatcher.m -------------------------------------------------------------------------------- /PMainThreadWatcherDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/music4kid/PMainThreadWatcher/HEAD/PMainThreadWatcherDemo/ViewController.h -------------------------------------------------------------------------------- /PMainThreadWatcherDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/music4kid/PMainThreadWatcher/HEAD/PMainThreadWatcherDemo/ViewController.m -------------------------------------------------------------------------------- /PMainThreadWatcherDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/music4kid/PMainThreadWatcher/HEAD/PMainThreadWatcherDemo/main.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/music4kid/PMainThreadWatcher/HEAD/README.md --------------------------------------------------------------------------------