├── CrashManager.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── mouruiXY.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── mouruiXY.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── CrashManager.xcscheme │ └── xcschememanagement.plist ├── CrashManager ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── CrashManager │ ├── CrashManager.swift │ ├── SlideAdressTool.h │ ├── SlideAdressTool.m │ ├── crashNSExceptionManager.swift │ └── crashSignalManager.swift ├── CrashManager_Bridging_Header.h ├── Info.plist └── ViewController.swift ├── CrashManagerTests ├── CrashManagerTests.swift └── Info.plist ├── CrashManagerUITests ├── CrashManagerUITests.swift └── Info.plist └── README.md /CrashManager.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyi6409/XYCrashManager/HEAD/CrashManager.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CrashManager.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyi6409/XYCrashManager/HEAD/CrashManager.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CrashManager.xcodeproj/project.xcworkspace/xcuserdata/mouruiXY.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyi6409/XYCrashManager/HEAD/CrashManager.xcodeproj/project.xcworkspace/xcuserdata/mouruiXY.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CrashManager.xcodeproj/xcuserdata/mouruiXY.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyi6409/XYCrashManager/HEAD/CrashManager.xcodeproj/xcuserdata/mouruiXY.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /CrashManager.xcodeproj/xcuserdata/mouruiXY.xcuserdatad/xcschemes/CrashManager.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyi6409/XYCrashManager/HEAD/CrashManager.xcodeproj/xcuserdata/mouruiXY.xcuserdatad/xcschemes/CrashManager.xcscheme -------------------------------------------------------------------------------- /CrashManager.xcodeproj/xcuserdata/mouruiXY.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyi6409/XYCrashManager/HEAD/CrashManager.xcodeproj/xcuserdata/mouruiXY.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CrashManager/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyi6409/XYCrashManager/HEAD/CrashManager/AppDelegate.swift -------------------------------------------------------------------------------- /CrashManager/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyi6409/XYCrashManager/HEAD/CrashManager/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CrashManager/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyi6409/XYCrashManager/HEAD/CrashManager/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CrashManager/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyi6409/XYCrashManager/HEAD/CrashManager/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CrashManager/CrashManager/CrashManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyi6409/XYCrashManager/HEAD/CrashManager/CrashManager/CrashManager.swift -------------------------------------------------------------------------------- /CrashManager/CrashManager/SlideAdressTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyi6409/XYCrashManager/HEAD/CrashManager/CrashManager/SlideAdressTool.h -------------------------------------------------------------------------------- /CrashManager/CrashManager/SlideAdressTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyi6409/XYCrashManager/HEAD/CrashManager/CrashManager/SlideAdressTool.m -------------------------------------------------------------------------------- /CrashManager/CrashManager/crashNSExceptionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyi6409/XYCrashManager/HEAD/CrashManager/CrashManager/crashNSExceptionManager.swift -------------------------------------------------------------------------------- /CrashManager/CrashManager/crashSignalManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyi6409/XYCrashManager/HEAD/CrashManager/CrashManager/crashSignalManager.swift -------------------------------------------------------------------------------- /CrashManager/CrashManager_Bridging_Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyi6409/XYCrashManager/HEAD/CrashManager/CrashManager_Bridging_Header.h -------------------------------------------------------------------------------- /CrashManager/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyi6409/XYCrashManager/HEAD/CrashManager/Info.plist -------------------------------------------------------------------------------- /CrashManager/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyi6409/XYCrashManager/HEAD/CrashManager/ViewController.swift -------------------------------------------------------------------------------- /CrashManagerTests/CrashManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyi6409/XYCrashManager/HEAD/CrashManagerTests/CrashManagerTests.swift -------------------------------------------------------------------------------- /CrashManagerTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyi6409/XYCrashManager/HEAD/CrashManagerTests/Info.plist -------------------------------------------------------------------------------- /CrashManagerUITests/CrashManagerUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyi6409/XYCrashManager/HEAD/CrashManagerUITests/CrashManagerUITests.swift -------------------------------------------------------------------------------- /CrashManagerUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyi6409/XYCrashManager/HEAD/CrashManagerUITests/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyi6409/XYCrashManager/HEAD/README.md --------------------------------------------------------------------------------