├── .BayMaxProtector.podspec.swo ├── .BayMaxProtector.podspec.swp ├── .DS_Store ├── .gitignore ├── BayMaxProtector.podspec ├── Class ├── ARC │ ├── BayMaxCFunctions.h │ ├── BayMaxCatchError.h │ ├── BayMaxCatchError.m │ ├── BayMaxDebugView.h │ ├── BayMaxDebugView.m │ ├── BayMaxDegradeAssist.h │ ├── BayMaxDegradeAssist.m │ ├── BayMaxKVODelegate.h │ ├── BayMaxKVODelegate.m │ ├── BayMaxProtector.h │ ├── BayMaxProtector.m │ ├── BayMaxTimerSubTarget.h │ ├── BayMaxTimerSubTarget.m │ ├── BayMaxWeakProxy.h │ └── BayMaxWeakProxy.m ├── BayMaxContainers.h └── BayMaxContainers.m ├── DemoBayMaxProtector ├── DemoBayMaxProtector.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── gujitao.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── gujitao.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── DemoBayMaxProtector │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── AssistMicros.h │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Examples │ │ ├── Base │ │ │ ├── BaseViewController.h │ │ │ └── BaseViewController.m │ │ ├── Containers │ │ │ ├── TestContainerVC.h │ │ │ └── TestContainerVC.m │ │ ├── Degrade │ │ │ ├── AutoDegrade │ │ │ │ ├── TestAutoDegradeVC.h │ │ │ │ └── TestAutoDegradeVC.m │ │ │ ├── ManaulDegrade │ │ │ │ ├── TestManaulDegradeVC.h │ │ │ │ └── TestManaulDegradeVC.m │ │ │ └── Webview │ │ │ │ ├── WebViewController.h │ │ │ │ └── WebViewController.m │ │ ├── KVO │ │ │ ├── TestKVOErrorVC.h │ │ │ └── TestKVOErrorVC.m │ │ ├── NSNotifitication │ │ │ ├── TestNotificationErrorVC.h │ │ │ └── TestNotificationErrorVC.m │ │ ├── Timer │ │ │ ├── TestTimerErrorVC.h │ │ │ └── TestTimerErrorVC.m │ │ ├── UnrecognizedSelector │ │ │ ├── TestUnrecognizedSelVC.h │ │ │ ├── TestUnrecognizedSelVC.m │ │ │ ├── TestViewDidloadUnrecognizedSelVC.h │ │ │ └── TestViewDidloadUnrecognizedSelVC.m │ │ └── Vender │ │ │ └── SVProgressHUD │ │ │ └── SVProgressHUD │ │ │ ├── SVIndefiniteAnimatedView.h │ │ │ ├── SVIndefiniteAnimatedView.m │ │ │ ├── SVProgressHUD.bundle │ │ │ ├── angle-mask.png │ │ │ ├── angle-mask@2x.png │ │ │ ├── angle-mask@3x.png │ │ │ ├── error.png │ │ │ ├── error@2x.png │ │ │ ├── error@3x.png │ │ │ ├── info.png │ │ │ ├── info@2x.png │ │ │ ├── info@3x.png │ │ │ ├── success.png │ │ │ ├── success@2x.png │ │ │ └── success@3x.png │ │ │ ├── SVProgressHUD.h │ │ │ └── SVProgressHUD.m │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── DemoBayMaxProtectorTests │ ├── DemoBayMaxProtectorTests.m │ └── Info.plist ├── DemoBayMaxProtectorUITests │ ├── DemoBayMaxProtectorUITests.m │ └── Info.plist ├── Podfile └── Podfile.lock ├── LICENSE └── README.md /.BayMaxProtector.podspec.swo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/.BayMaxProtector.podspec.swo -------------------------------------------------------------------------------- /.BayMaxProtector.podspec.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/.BayMaxProtector.podspec.swp -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/.gitignore -------------------------------------------------------------------------------- /BayMaxProtector.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/BayMaxProtector.podspec -------------------------------------------------------------------------------- /Class/ARC/BayMaxCFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/Class/ARC/BayMaxCFunctions.h -------------------------------------------------------------------------------- /Class/ARC/BayMaxCatchError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/Class/ARC/BayMaxCatchError.h -------------------------------------------------------------------------------- /Class/ARC/BayMaxCatchError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/Class/ARC/BayMaxCatchError.m -------------------------------------------------------------------------------- /Class/ARC/BayMaxDebugView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/Class/ARC/BayMaxDebugView.h -------------------------------------------------------------------------------- /Class/ARC/BayMaxDebugView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/Class/ARC/BayMaxDebugView.m -------------------------------------------------------------------------------- /Class/ARC/BayMaxDegradeAssist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/Class/ARC/BayMaxDegradeAssist.h -------------------------------------------------------------------------------- /Class/ARC/BayMaxDegradeAssist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/Class/ARC/BayMaxDegradeAssist.m -------------------------------------------------------------------------------- /Class/ARC/BayMaxKVODelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/Class/ARC/BayMaxKVODelegate.h -------------------------------------------------------------------------------- /Class/ARC/BayMaxKVODelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/Class/ARC/BayMaxKVODelegate.m -------------------------------------------------------------------------------- /Class/ARC/BayMaxProtector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/Class/ARC/BayMaxProtector.h -------------------------------------------------------------------------------- /Class/ARC/BayMaxProtector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/Class/ARC/BayMaxProtector.m -------------------------------------------------------------------------------- /Class/ARC/BayMaxTimerSubTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/Class/ARC/BayMaxTimerSubTarget.h -------------------------------------------------------------------------------- /Class/ARC/BayMaxTimerSubTarget.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/Class/ARC/BayMaxTimerSubTarget.m -------------------------------------------------------------------------------- /Class/ARC/BayMaxWeakProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/Class/ARC/BayMaxWeakProxy.h -------------------------------------------------------------------------------- /Class/ARC/BayMaxWeakProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/Class/ARC/BayMaxWeakProxy.m -------------------------------------------------------------------------------- /Class/BayMaxContainers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/Class/BayMaxContainers.h -------------------------------------------------------------------------------- /Class/BayMaxContainers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/Class/BayMaxContainers.m -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector.xcodeproj/project.xcworkspace/xcuserdata/gujitao.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector.xcodeproj/project.xcworkspace/xcuserdata/gujitao.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector.xcodeproj/xcuserdata/gujitao.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector.xcodeproj/xcuserdata/gujitao.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/AppDelegate.h -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/AppDelegate.m -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/AssistMicros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/AssistMicros.h -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/Base/BaseViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/Base/BaseViewController.h -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/Base/BaseViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/Base/BaseViewController.m -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/Containers/TestContainerVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/Containers/TestContainerVC.h -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/Containers/TestContainerVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/Containers/TestContainerVC.m -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/Degrade/AutoDegrade/TestAutoDegradeVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/Degrade/AutoDegrade/TestAutoDegradeVC.h -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/Degrade/AutoDegrade/TestAutoDegradeVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/Degrade/AutoDegrade/TestAutoDegradeVC.m -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/Degrade/ManaulDegrade/TestManaulDegradeVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/Degrade/ManaulDegrade/TestManaulDegradeVC.h -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/Degrade/ManaulDegrade/TestManaulDegradeVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/Degrade/ManaulDegrade/TestManaulDegradeVC.m -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/Degrade/Webview/WebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/Degrade/Webview/WebViewController.h -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/Degrade/Webview/WebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/Degrade/Webview/WebViewController.m -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/KVO/TestKVOErrorVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/KVO/TestKVOErrorVC.h -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/KVO/TestKVOErrorVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/KVO/TestKVOErrorVC.m -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/NSNotifitication/TestNotificationErrorVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/NSNotifitication/TestNotificationErrorVC.h -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/NSNotifitication/TestNotificationErrorVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/NSNotifitication/TestNotificationErrorVC.m -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/Timer/TestTimerErrorVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/Timer/TestTimerErrorVC.h -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/Timer/TestTimerErrorVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/Timer/TestTimerErrorVC.m -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/UnrecognizedSelector/TestUnrecognizedSelVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/UnrecognizedSelector/TestUnrecognizedSelVC.h -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/UnrecognizedSelector/TestUnrecognizedSelVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/UnrecognizedSelector/TestUnrecognizedSelVC.m -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/UnrecognizedSelector/TestViewDidloadUnrecognizedSelVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/UnrecognizedSelector/TestViewDidloadUnrecognizedSelVC.h -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/UnrecognizedSelector/TestViewDidloadUnrecognizedSelVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/UnrecognizedSelector/TestViewDidloadUnrecognizedSelVC.m -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/Vender/SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/Vender/SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.h -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/Vender/SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/Vender/SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.m -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/Vender/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/Vender/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask.png -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/Vender/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/Vender/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@2x.png -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/Vender/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/Vender/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@3x.png -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/Vender/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/Vender/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error.png -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/Vender/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/Vender/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@2x.png -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/Vender/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/Vender/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@3x.png -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/Vender/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/Vender/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info.png -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/Vender/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/Vender/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@2x.png -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/Vender/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/Vender/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@3x.png -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/Vender/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/Vender/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success.png -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/Vender/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/Vender/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@2x.png -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/Vender/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/Vender/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@3x.png -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/Vender/SVProgressHUD/SVProgressHUD/SVProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/Vender/SVProgressHUD/SVProgressHUD/SVProgressHUD.h -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Examples/Vender/SVProgressHUD/SVProgressHUD/SVProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Examples/Vender/SVProgressHUD/SVProgressHUD/SVProgressHUD.m -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/Info.plist -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/ViewController.h -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/ViewController.m -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtector/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtector/main.m -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtectorTests/DemoBayMaxProtectorTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtectorTests/DemoBayMaxProtectorTests.m -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtectorTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtectorTests/Info.plist -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtectorUITests/DemoBayMaxProtectorUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtectorUITests/DemoBayMaxProtectorUITests.m -------------------------------------------------------------------------------- /DemoBayMaxProtector/DemoBayMaxProtectorUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/DemoBayMaxProtectorUITests/Info.plist -------------------------------------------------------------------------------- /DemoBayMaxProtector/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/Podfile -------------------------------------------------------------------------------- /DemoBayMaxProtector/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/DemoBayMaxProtector/Podfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunday1990/BayMaxProtector/HEAD/README.md --------------------------------------------------------------------------------