├── .gitignore ├── GYBootingProtection.podspec ├── LICENSE ├── README.md ├── demo ├── GYBootingProtectionDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── GYBootingProtectionDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── img ├── GYBootingProtection.png ├── GYBootingProtectionAfter.png ├── GYBootingProtectionCrashDetect.png ├── GYBootingProtectionIntro.png ├── GYBootingProtectionTimer.png └── GYBootingProtectionTips.png └── src ├── AppDelegate+GYBootingProtection.h ├── AppDelegate+GYBootingProtection.m ├── GYBootingProtection.h └── GYBootingProtection.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuslevis/GYBootingProtection/HEAD/.gitignore -------------------------------------------------------------------------------- /GYBootingProtection.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuslevis/GYBootingProtection/HEAD/GYBootingProtection.podspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuslevis/GYBootingProtection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuslevis/GYBootingProtection/HEAD/README.md -------------------------------------------------------------------------------- /demo/GYBootingProtectionDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuslevis/GYBootingProtection/HEAD/demo/GYBootingProtectionDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /demo/GYBootingProtectionDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuslevis/GYBootingProtection/HEAD/demo/GYBootingProtectionDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /demo/GYBootingProtectionDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuslevis/GYBootingProtection/HEAD/demo/GYBootingProtectionDemo/AppDelegate.h -------------------------------------------------------------------------------- /demo/GYBootingProtectionDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuslevis/GYBootingProtection/HEAD/demo/GYBootingProtectionDemo/AppDelegate.m -------------------------------------------------------------------------------- /demo/GYBootingProtectionDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuslevis/GYBootingProtection/HEAD/demo/GYBootingProtectionDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /demo/GYBootingProtectionDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuslevis/GYBootingProtection/HEAD/demo/GYBootingProtectionDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /demo/GYBootingProtectionDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuslevis/GYBootingProtection/HEAD/demo/GYBootingProtectionDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /demo/GYBootingProtectionDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuslevis/GYBootingProtection/HEAD/demo/GYBootingProtectionDemo/Info.plist -------------------------------------------------------------------------------- /demo/GYBootingProtectionDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuslevis/GYBootingProtection/HEAD/demo/GYBootingProtectionDemo/ViewController.h -------------------------------------------------------------------------------- /demo/GYBootingProtectionDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuslevis/GYBootingProtection/HEAD/demo/GYBootingProtectionDemo/ViewController.m -------------------------------------------------------------------------------- /demo/GYBootingProtectionDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuslevis/GYBootingProtection/HEAD/demo/GYBootingProtectionDemo/main.m -------------------------------------------------------------------------------- /img/GYBootingProtection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuslevis/GYBootingProtection/HEAD/img/GYBootingProtection.png -------------------------------------------------------------------------------- /img/GYBootingProtectionAfter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuslevis/GYBootingProtection/HEAD/img/GYBootingProtectionAfter.png -------------------------------------------------------------------------------- /img/GYBootingProtectionCrashDetect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuslevis/GYBootingProtection/HEAD/img/GYBootingProtectionCrashDetect.png -------------------------------------------------------------------------------- /img/GYBootingProtectionIntro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuslevis/GYBootingProtection/HEAD/img/GYBootingProtectionIntro.png -------------------------------------------------------------------------------- /img/GYBootingProtectionTimer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuslevis/GYBootingProtection/HEAD/img/GYBootingProtectionTimer.png -------------------------------------------------------------------------------- /img/GYBootingProtectionTips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuslevis/GYBootingProtection/HEAD/img/GYBootingProtectionTips.png -------------------------------------------------------------------------------- /src/AppDelegate+GYBootingProtection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuslevis/GYBootingProtection/HEAD/src/AppDelegate+GYBootingProtection.h -------------------------------------------------------------------------------- /src/AppDelegate+GYBootingProtection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuslevis/GYBootingProtection/HEAD/src/AppDelegate+GYBootingProtection.m -------------------------------------------------------------------------------- /src/GYBootingProtection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuslevis/GYBootingProtection/HEAD/src/GYBootingProtection.h -------------------------------------------------------------------------------- /src/GYBootingProtection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuslevis/GYBootingProtection/HEAD/src/GYBootingProtection.m --------------------------------------------------------------------------------