├── BSMonitorTimeTool.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── songpeng.xcuserdatad │ └── xcschemes │ ├── BSMonitorTimeTool.xcscheme │ └── xcschememanagement.plist ├── BSMonitorTimeTool ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── BSMonitorTime │ ├── BSBacktraceLogger.h │ ├── BSBacktraceLogger.m │ ├── BSMonitorTime.h │ ├── BSMonitorTime.m │ ├── UIViewController+Common.h │ └── UIViewController+Common.m ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m ├── BSMonitorTimeToolTests ├── BSMonitorTimeToolTests.m └── Info.plist ├── BSMonitorTimeToolUITests ├── BSMonitorTimeToolUITests.m └── Info.plist ├── README.md └── 监控耗时截图.png /BSMonitorTimeTool.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JerryDream007/BSMonitorTimeTool/HEAD/BSMonitorTimeTool.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BSMonitorTimeTool.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JerryDream007/BSMonitorTimeTool/HEAD/BSMonitorTimeTool.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /BSMonitorTimeTool.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JerryDream007/BSMonitorTimeTool/HEAD/BSMonitorTimeTool.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /BSMonitorTimeTool.xcodeproj/xcuserdata/songpeng.xcuserdatad/xcschemes/BSMonitorTimeTool.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JerryDream007/BSMonitorTimeTool/HEAD/BSMonitorTimeTool.xcodeproj/xcuserdata/songpeng.xcuserdatad/xcschemes/BSMonitorTimeTool.xcscheme -------------------------------------------------------------------------------- /BSMonitorTimeTool.xcodeproj/xcuserdata/songpeng.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JerryDream007/BSMonitorTimeTool/HEAD/BSMonitorTimeTool.xcodeproj/xcuserdata/songpeng.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /BSMonitorTimeTool/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JerryDream007/BSMonitorTimeTool/HEAD/BSMonitorTimeTool/AppDelegate.h -------------------------------------------------------------------------------- /BSMonitorTimeTool/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JerryDream007/BSMonitorTimeTool/HEAD/BSMonitorTimeTool/AppDelegate.m -------------------------------------------------------------------------------- /BSMonitorTimeTool/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JerryDream007/BSMonitorTimeTool/HEAD/BSMonitorTimeTool/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /BSMonitorTimeTool/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JerryDream007/BSMonitorTimeTool/HEAD/BSMonitorTimeTool/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /BSMonitorTimeTool/BSMonitorTime/BSBacktraceLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JerryDream007/BSMonitorTimeTool/HEAD/BSMonitorTimeTool/BSMonitorTime/BSBacktraceLogger.h -------------------------------------------------------------------------------- /BSMonitorTimeTool/BSMonitorTime/BSBacktraceLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JerryDream007/BSMonitorTimeTool/HEAD/BSMonitorTimeTool/BSMonitorTime/BSBacktraceLogger.m -------------------------------------------------------------------------------- /BSMonitorTimeTool/BSMonitorTime/BSMonitorTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JerryDream007/BSMonitorTimeTool/HEAD/BSMonitorTimeTool/BSMonitorTime/BSMonitorTime.h -------------------------------------------------------------------------------- /BSMonitorTimeTool/BSMonitorTime/BSMonitorTime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JerryDream007/BSMonitorTimeTool/HEAD/BSMonitorTimeTool/BSMonitorTime/BSMonitorTime.m -------------------------------------------------------------------------------- /BSMonitorTimeTool/BSMonitorTime/UIViewController+Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JerryDream007/BSMonitorTimeTool/HEAD/BSMonitorTimeTool/BSMonitorTime/UIViewController+Common.h -------------------------------------------------------------------------------- /BSMonitorTimeTool/BSMonitorTime/UIViewController+Common.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JerryDream007/BSMonitorTimeTool/HEAD/BSMonitorTimeTool/BSMonitorTime/UIViewController+Common.m -------------------------------------------------------------------------------- /BSMonitorTimeTool/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JerryDream007/BSMonitorTimeTool/HEAD/BSMonitorTimeTool/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /BSMonitorTimeTool/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JerryDream007/BSMonitorTimeTool/HEAD/BSMonitorTimeTool/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /BSMonitorTimeTool/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JerryDream007/BSMonitorTimeTool/HEAD/BSMonitorTimeTool/Info.plist -------------------------------------------------------------------------------- /BSMonitorTimeTool/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JerryDream007/BSMonitorTimeTool/HEAD/BSMonitorTimeTool/ViewController.h -------------------------------------------------------------------------------- /BSMonitorTimeTool/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JerryDream007/BSMonitorTimeTool/HEAD/BSMonitorTimeTool/ViewController.m -------------------------------------------------------------------------------- /BSMonitorTimeTool/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JerryDream007/BSMonitorTimeTool/HEAD/BSMonitorTimeTool/main.m -------------------------------------------------------------------------------- /BSMonitorTimeToolTests/BSMonitorTimeToolTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JerryDream007/BSMonitorTimeTool/HEAD/BSMonitorTimeToolTests/BSMonitorTimeToolTests.m -------------------------------------------------------------------------------- /BSMonitorTimeToolTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JerryDream007/BSMonitorTimeTool/HEAD/BSMonitorTimeToolTests/Info.plist -------------------------------------------------------------------------------- /BSMonitorTimeToolUITests/BSMonitorTimeToolUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JerryDream007/BSMonitorTimeTool/HEAD/BSMonitorTimeToolUITests/BSMonitorTimeToolUITests.m -------------------------------------------------------------------------------- /BSMonitorTimeToolUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JerryDream007/BSMonitorTimeTool/HEAD/BSMonitorTimeToolUITests/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JerryDream007/BSMonitorTimeTool/HEAD/README.md -------------------------------------------------------------------------------- /监控耗时截图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JerryDream007/BSMonitorTimeTool/HEAD/监控耗时截图.png --------------------------------------------------------------------------------