├── .gitignore ├── .travis.yml ├── Example ├── Example.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Example.xcscheme ├── Example │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── GETViewController.h │ ├── GETViewController.m │ ├── GifViewController.h │ ├── GifViewController.m │ ├── HomeViewController.h │ ├── HomeViewController.m │ ├── IconViewController.h │ ├── IconViewController.m │ ├── Info.plist │ ├── JSONData │ ├── JSONModelDemoVC.h │ ├── JSONModelDemoVC.m │ ├── Launch Screen.storyboard │ ├── Reference │ ├── WeatherModel.h │ ├── WeatherModel.m │ ├── WebImageViewController.h │ ├── WebImageViewController.m │ ├── aaa@2x.gif │ ├── main.m │ └── plan └── ModelMaker │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── LICENSE ├── README.md ├── README_Zh_cn.md ├── WTKit.xcodeproj ├── WTKit.xcworkspace │ └── contents.xcworkspacedata ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── WTKit.xcscheme │ ├── WTKitMacOS.xcscheme │ ├── WTKitTVOS.xcscheme │ └── WTKitWatchOS.xcscheme ├── WTKit.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── WTKit ├── CALayer+Nice.h ├── CALayer+Nice.m ├── Info.plist ├── NSArray+Nice.h ├── NSArray+Nice.m ├── NSDictionary+JSONModel.h ├── NSDictionary+JSONModel.m ├── NSJSONSerialization+Nice.h ├── NSJSONSerialization+Nice.m ├── NSMutableArray+Nice.h ├── NSMutableArray+Nice.m ├── NSObject+JSONModel.h ├── NSObject+JSONModel.m ├── NSObject+Nice.h ├── NSObject+Nice.m ├── NSOperationQueue+Nice.h ├── NSOperationQueue+Nice.m ├── UIAlertView+WTRequestCenter.h ├── UIAlertView+WTRequestCenter.m ├── UIApplication+Nice.h ├── UIApplication+Nice.m ├── UIButton+WTRequestCenter.h ├── UIButton+WTRequestCenter.m ├── UIColor+WTRequestCenter.h ├── UIColor+WTRequestCenter.m ├── UIDevice+WTRequestCenter.h ├── UIDevice+WTRequestCenter.m ├── UIImage+Nice.h ├── UIImage+Nice.m ├── UIImageView+WTRequestCenter.h ├── UIImageView+WTRequestCenter.m ├── UIScreen+WTRequestCenter.h ├── UIScreen+WTRequestCenter.m ├── UIView+Nice.h ├── UIView+Nice.m ├── UIViewController+Nice.h ├── UIViewController+Nice.m ├── WTCycleScrollView.h ├── WTCycleScrollView.m ├── WTDataSaver.h ├── WTDataSaver.m ├── WTHUD.h ├── WTHUD.m ├── WTHUDView.h ├── WTHUDView.m ├── WTImageViewer.h ├── WTImageViewer.m ├── WTKit.h ├── WTNetWorkManager.h ├── WTNetWorkManager.m ├── WTNetworkActivityIndicatorManager.h ├── WTNetworkActivityIndicatorManager.m ├── WTNumberLabel.h ├── WTNumberLabel.m ├── WTURLSessionTask.h └── WTURLSessionTask.m ├── WTKitMacOS ├── Info.plist └── WTKitMacOS.h ├── WTKitTVOS ├── Info.plist └── WTKitTVOS.h ├── WTKitWatchOS ├── Info.plist └── WTKitWatchOS.h └── WTRequestCenter.podspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme -------------------------------------------------------------------------------- /Example/Example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/Example/AppDelegate.h -------------------------------------------------------------------------------- /Example/Example/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/Example/AppDelegate.m -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Example/GETViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/Example/GETViewController.h -------------------------------------------------------------------------------- /Example/Example/GETViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/Example/GETViewController.m -------------------------------------------------------------------------------- /Example/Example/GifViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/Example/GifViewController.h -------------------------------------------------------------------------------- /Example/Example/GifViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/Example/GifViewController.m -------------------------------------------------------------------------------- /Example/Example/HomeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/Example/HomeViewController.h -------------------------------------------------------------------------------- /Example/Example/HomeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/Example/HomeViewController.m -------------------------------------------------------------------------------- /Example/Example/IconViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/Example/IconViewController.h -------------------------------------------------------------------------------- /Example/Example/IconViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/Example/IconViewController.m -------------------------------------------------------------------------------- /Example/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/Example/Info.plist -------------------------------------------------------------------------------- /Example/Example/JSONData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/Example/JSONData -------------------------------------------------------------------------------- /Example/Example/JSONModelDemoVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/Example/JSONModelDemoVC.h -------------------------------------------------------------------------------- /Example/Example/JSONModelDemoVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/Example/JSONModelDemoVC.m -------------------------------------------------------------------------------- /Example/Example/Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/Example/Launch Screen.storyboard -------------------------------------------------------------------------------- /Example/Example/Reference: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/Example/Reference -------------------------------------------------------------------------------- /Example/Example/WeatherModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/Example/WeatherModel.h -------------------------------------------------------------------------------- /Example/Example/WeatherModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/Example/WeatherModel.m -------------------------------------------------------------------------------- /Example/Example/WebImageViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/Example/WebImageViewController.h -------------------------------------------------------------------------------- /Example/Example/WebImageViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/Example/WebImageViewController.m -------------------------------------------------------------------------------- /Example/Example/aaa@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/Example/aaa@2x.gif -------------------------------------------------------------------------------- /Example/Example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/Example/main.m -------------------------------------------------------------------------------- /Example/Example/plan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/Example/plan -------------------------------------------------------------------------------- /Example/ModelMaker/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/ModelMaker/AppDelegate.h -------------------------------------------------------------------------------- /Example/ModelMaker/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/ModelMaker/AppDelegate.m -------------------------------------------------------------------------------- /Example/ModelMaker/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/ModelMaker/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ModelMaker/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/ModelMaker/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/ModelMaker/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/ModelMaker/Info.plist -------------------------------------------------------------------------------- /Example/ModelMaker/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/ModelMaker/ViewController.h -------------------------------------------------------------------------------- /Example/ModelMaker/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/ModelMaker/ViewController.m -------------------------------------------------------------------------------- /Example/ModelMaker/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/Example/ModelMaker/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/README.md -------------------------------------------------------------------------------- /README_Zh_cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/README_Zh_cn.md -------------------------------------------------------------------------------- /WTKit.xcodeproj/WTKit.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit.xcodeproj/WTKit.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /WTKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /WTKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /WTKit.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /WTKit.xcodeproj/xcshareddata/xcschemes/WTKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit.xcodeproj/xcshareddata/xcschemes/WTKit.xcscheme -------------------------------------------------------------------------------- /WTKit.xcodeproj/xcshareddata/xcschemes/WTKitMacOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit.xcodeproj/xcshareddata/xcschemes/WTKitMacOS.xcscheme -------------------------------------------------------------------------------- /WTKit.xcodeproj/xcshareddata/xcschemes/WTKitTVOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit.xcodeproj/xcshareddata/xcschemes/WTKitTVOS.xcscheme -------------------------------------------------------------------------------- /WTKit.xcodeproj/xcshareddata/xcschemes/WTKitWatchOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit.xcodeproj/xcshareddata/xcschemes/WTKitWatchOS.xcscheme -------------------------------------------------------------------------------- /WTKit.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /WTKit.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /WTKit/CALayer+Nice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/CALayer+Nice.h -------------------------------------------------------------------------------- /WTKit/CALayer+Nice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/CALayer+Nice.m -------------------------------------------------------------------------------- /WTKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/Info.plist -------------------------------------------------------------------------------- /WTKit/NSArray+Nice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/NSArray+Nice.h -------------------------------------------------------------------------------- /WTKit/NSArray+Nice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/NSArray+Nice.m -------------------------------------------------------------------------------- /WTKit/NSDictionary+JSONModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/NSDictionary+JSONModel.h -------------------------------------------------------------------------------- /WTKit/NSDictionary+JSONModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/NSDictionary+JSONModel.m -------------------------------------------------------------------------------- /WTKit/NSJSONSerialization+Nice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/NSJSONSerialization+Nice.h -------------------------------------------------------------------------------- /WTKit/NSJSONSerialization+Nice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/NSJSONSerialization+Nice.m -------------------------------------------------------------------------------- /WTKit/NSMutableArray+Nice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/NSMutableArray+Nice.h -------------------------------------------------------------------------------- /WTKit/NSMutableArray+Nice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/NSMutableArray+Nice.m -------------------------------------------------------------------------------- /WTKit/NSObject+JSONModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/NSObject+JSONModel.h -------------------------------------------------------------------------------- /WTKit/NSObject+JSONModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/NSObject+JSONModel.m -------------------------------------------------------------------------------- /WTKit/NSObject+Nice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/NSObject+Nice.h -------------------------------------------------------------------------------- /WTKit/NSObject+Nice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/NSObject+Nice.m -------------------------------------------------------------------------------- /WTKit/NSOperationQueue+Nice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/NSOperationQueue+Nice.h -------------------------------------------------------------------------------- /WTKit/NSOperationQueue+Nice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/NSOperationQueue+Nice.m -------------------------------------------------------------------------------- /WTKit/UIAlertView+WTRequestCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/UIAlertView+WTRequestCenter.h -------------------------------------------------------------------------------- /WTKit/UIAlertView+WTRequestCenter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/UIAlertView+WTRequestCenter.m -------------------------------------------------------------------------------- /WTKit/UIApplication+Nice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/UIApplication+Nice.h -------------------------------------------------------------------------------- /WTKit/UIApplication+Nice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/UIApplication+Nice.m -------------------------------------------------------------------------------- /WTKit/UIButton+WTRequestCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/UIButton+WTRequestCenter.h -------------------------------------------------------------------------------- /WTKit/UIButton+WTRequestCenter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/UIButton+WTRequestCenter.m -------------------------------------------------------------------------------- /WTKit/UIColor+WTRequestCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/UIColor+WTRequestCenter.h -------------------------------------------------------------------------------- /WTKit/UIColor+WTRequestCenter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/UIColor+WTRequestCenter.m -------------------------------------------------------------------------------- /WTKit/UIDevice+WTRequestCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/UIDevice+WTRequestCenter.h -------------------------------------------------------------------------------- /WTKit/UIDevice+WTRequestCenter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/UIDevice+WTRequestCenter.m -------------------------------------------------------------------------------- /WTKit/UIImage+Nice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/UIImage+Nice.h -------------------------------------------------------------------------------- /WTKit/UIImage+Nice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/UIImage+Nice.m -------------------------------------------------------------------------------- /WTKit/UIImageView+WTRequestCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/UIImageView+WTRequestCenter.h -------------------------------------------------------------------------------- /WTKit/UIImageView+WTRequestCenter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/UIImageView+WTRequestCenter.m -------------------------------------------------------------------------------- /WTKit/UIScreen+WTRequestCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/UIScreen+WTRequestCenter.h -------------------------------------------------------------------------------- /WTKit/UIScreen+WTRequestCenter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/UIScreen+WTRequestCenter.m -------------------------------------------------------------------------------- /WTKit/UIView+Nice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/UIView+Nice.h -------------------------------------------------------------------------------- /WTKit/UIView+Nice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/UIView+Nice.m -------------------------------------------------------------------------------- /WTKit/UIViewController+Nice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/UIViewController+Nice.h -------------------------------------------------------------------------------- /WTKit/UIViewController+Nice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/UIViewController+Nice.m -------------------------------------------------------------------------------- /WTKit/WTCycleScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/WTCycleScrollView.h -------------------------------------------------------------------------------- /WTKit/WTCycleScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/WTCycleScrollView.m -------------------------------------------------------------------------------- /WTKit/WTDataSaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/WTDataSaver.h -------------------------------------------------------------------------------- /WTKit/WTDataSaver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/WTDataSaver.m -------------------------------------------------------------------------------- /WTKit/WTHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/WTHUD.h -------------------------------------------------------------------------------- /WTKit/WTHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/WTHUD.m -------------------------------------------------------------------------------- /WTKit/WTHUDView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/WTHUDView.h -------------------------------------------------------------------------------- /WTKit/WTHUDView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/WTHUDView.m -------------------------------------------------------------------------------- /WTKit/WTImageViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/WTImageViewer.h -------------------------------------------------------------------------------- /WTKit/WTImageViewer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/WTImageViewer.m -------------------------------------------------------------------------------- /WTKit/WTKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/WTKit.h -------------------------------------------------------------------------------- /WTKit/WTNetWorkManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/WTNetWorkManager.h -------------------------------------------------------------------------------- /WTKit/WTNetWorkManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/WTNetWorkManager.m -------------------------------------------------------------------------------- /WTKit/WTNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/WTNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /WTKit/WTNetworkActivityIndicatorManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/WTNetworkActivityIndicatorManager.m -------------------------------------------------------------------------------- /WTKit/WTNumberLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/WTNumberLabel.h -------------------------------------------------------------------------------- /WTKit/WTNumberLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/WTNumberLabel.m -------------------------------------------------------------------------------- /WTKit/WTURLSessionTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/WTURLSessionTask.h -------------------------------------------------------------------------------- /WTKit/WTURLSessionTask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKit/WTURLSessionTask.m -------------------------------------------------------------------------------- /WTKitMacOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKitMacOS/Info.plist -------------------------------------------------------------------------------- /WTKitMacOS/WTKitMacOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKitMacOS/WTKitMacOS.h -------------------------------------------------------------------------------- /WTKitTVOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKitTVOS/Info.plist -------------------------------------------------------------------------------- /WTKitTVOS/WTKitTVOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKitTVOS/WTKitTVOS.h -------------------------------------------------------------------------------- /WTKitWatchOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKitWatchOS/Info.plist -------------------------------------------------------------------------------- /WTKitWatchOS/WTKitWatchOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTKitWatchOS/WTKitWatchOS.h -------------------------------------------------------------------------------- /WTRequestCenter.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwentong/WTRequestCenter/HEAD/WTRequestCenter.podspec --------------------------------------------------------------------------------