├── .gitignore ├── .travis.yml ├── AZTools.podspec ├── AZTools.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── AZTools.xcscheme ├── AZTools ├── AZBlockHelper.h ├── AZBlockHelper.m ├── AZServiceDate.h ├── AZServiceDate.m ├── AZTools.h ├── AZWeakProxy.h ├── AZWeakProxy.m ├── Info.plist ├── NSDate+AZInternetDateTime.h ├── NSDate+AZInternetDateTime.m ├── NSObject+AZSafeArea.h ├── NSObject+AZSafeArea.m ├── UIButton+AZCountDown.h ├── UIButton+AZCountDown.m ├── UIView+AZGradient.h ├── UIView+AZGradient.m ├── UIViewController+AZPushAndPop.h └── UIViewController+AZPushAndPop.m ├── AZToolsTests ├── AZToolsTests.m └── Info.plist ├── Demo ├── AZBlockDemo.h ├── AZBlockDemo.m ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/.travis.yml -------------------------------------------------------------------------------- /AZTools.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/AZTools.podspec -------------------------------------------------------------------------------- /AZTools.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/AZTools.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AZTools.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/AZTools.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AZTools.xcodeproj/xcshareddata/xcschemes/AZTools.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/AZTools.xcodeproj/xcshareddata/xcschemes/AZTools.xcscheme -------------------------------------------------------------------------------- /AZTools/AZBlockHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/AZTools/AZBlockHelper.h -------------------------------------------------------------------------------- /AZTools/AZBlockHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/AZTools/AZBlockHelper.m -------------------------------------------------------------------------------- /AZTools/AZServiceDate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/AZTools/AZServiceDate.h -------------------------------------------------------------------------------- /AZTools/AZServiceDate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/AZTools/AZServiceDate.m -------------------------------------------------------------------------------- /AZTools/AZTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/AZTools/AZTools.h -------------------------------------------------------------------------------- /AZTools/AZWeakProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/AZTools/AZWeakProxy.h -------------------------------------------------------------------------------- /AZTools/AZWeakProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/AZTools/AZWeakProxy.m -------------------------------------------------------------------------------- /AZTools/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/AZTools/Info.plist -------------------------------------------------------------------------------- /AZTools/NSDate+AZInternetDateTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/AZTools/NSDate+AZInternetDateTime.h -------------------------------------------------------------------------------- /AZTools/NSDate+AZInternetDateTime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/AZTools/NSDate+AZInternetDateTime.m -------------------------------------------------------------------------------- /AZTools/NSObject+AZSafeArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/AZTools/NSObject+AZSafeArea.h -------------------------------------------------------------------------------- /AZTools/NSObject+AZSafeArea.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/AZTools/NSObject+AZSafeArea.m -------------------------------------------------------------------------------- /AZTools/UIButton+AZCountDown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/AZTools/UIButton+AZCountDown.h -------------------------------------------------------------------------------- /AZTools/UIButton+AZCountDown.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/AZTools/UIButton+AZCountDown.m -------------------------------------------------------------------------------- /AZTools/UIView+AZGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/AZTools/UIView+AZGradient.h -------------------------------------------------------------------------------- /AZTools/UIView+AZGradient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/AZTools/UIView+AZGradient.m -------------------------------------------------------------------------------- /AZTools/UIViewController+AZPushAndPop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/AZTools/UIViewController+AZPushAndPop.h -------------------------------------------------------------------------------- /AZTools/UIViewController+AZPushAndPop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/AZTools/UIViewController+AZPushAndPop.m -------------------------------------------------------------------------------- /AZToolsTests/AZToolsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/AZToolsTests/AZToolsTests.m -------------------------------------------------------------------------------- /AZToolsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/AZToolsTests/Info.plist -------------------------------------------------------------------------------- /Demo/AZBlockDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/Demo/AZBlockDemo.h -------------------------------------------------------------------------------- /Demo/AZBlockDemo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/Demo/AZBlockDemo.m -------------------------------------------------------------------------------- /Demo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/Demo/AppDelegate.h -------------------------------------------------------------------------------- /Demo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/Demo/AppDelegate.m -------------------------------------------------------------------------------- /Demo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/Demo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/Demo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/Demo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Demo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/Demo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/Demo/Info.plist -------------------------------------------------------------------------------- /Demo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/Demo/ViewController.h -------------------------------------------------------------------------------- /Demo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/Demo/ViewController.m -------------------------------------------------------------------------------- /Demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/Demo/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlfredZY/AZTools/HEAD/README.md --------------------------------------------------------------------------------