├── .gitignore ├── Demo ├── Default-568h@2x.png ├── Demo.xcodeproj │ └── project.pbxproj ├── Demo │ ├── Demo-Info.plist │ ├── Demo-Prefix.pch │ ├── DemoAppDelegate.h │ ├── DemoAppDelegate.m │ ├── DemoViewController.h │ ├── DemoViewController.m │ ├── en.lproj │ │ ├── DemoViewController.xib │ │ ├── InfoPlist.strings │ │ └── MainWindow.xib │ └── main.m └── MacDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── MacDemo-Info.plist │ ├── MacDemo-Prefix.pch │ ├── en.lproj │ ├── Credits.rtf │ ├── InfoPlist.strings │ └── MainMenu.xib │ └── main.m ├── LICENSE.txt ├── README.md ├── SVHTTPRequest.podspec └── SVHTTPRequest ├── SVHTTPClient.h ├── SVHTTPClient.m ├── SVHTTPRequest.h └── SVHTTPRequest.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVHTTPRequest/HEAD/.gitignore -------------------------------------------------------------------------------- /Demo/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVHTTPRequest/HEAD/Demo/Default-568h@2x.png -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVHTTPRequest/HEAD/Demo/Demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/Demo/Demo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVHTTPRequest/HEAD/Demo/Demo/Demo-Info.plist -------------------------------------------------------------------------------- /Demo/Demo/Demo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVHTTPRequest/HEAD/Demo/Demo/Demo-Prefix.pch -------------------------------------------------------------------------------- /Demo/Demo/DemoAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVHTTPRequest/HEAD/Demo/Demo/DemoAppDelegate.h -------------------------------------------------------------------------------- /Demo/Demo/DemoAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVHTTPRequest/HEAD/Demo/Demo/DemoAppDelegate.m -------------------------------------------------------------------------------- /Demo/Demo/DemoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVHTTPRequest/HEAD/Demo/Demo/DemoViewController.h -------------------------------------------------------------------------------- /Demo/Demo/DemoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVHTTPRequest/HEAD/Demo/Demo/DemoViewController.m -------------------------------------------------------------------------------- /Demo/Demo/en.lproj/DemoViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVHTTPRequest/HEAD/Demo/Demo/en.lproj/DemoViewController.xib -------------------------------------------------------------------------------- /Demo/Demo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Demo/Demo/en.lproj/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVHTTPRequest/HEAD/Demo/Demo/en.lproj/MainWindow.xib -------------------------------------------------------------------------------- /Demo/Demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVHTTPRequest/HEAD/Demo/Demo/main.m -------------------------------------------------------------------------------- /Demo/MacDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVHTTPRequest/HEAD/Demo/MacDemo/AppDelegate.h -------------------------------------------------------------------------------- /Demo/MacDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVHTTPRequest/HEAD/Demo/MacDemo/AppDelegate.m -------------------------------------------------------------------------------- /Demo/MacDemo/MacDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVHTTPRequest/HEAD/Demo/MacDemo/MacDemo-Info.plist -------------------------------------------------------------------------------- /Demo/MacDemo/MacDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVHTTPRequest/HEAD/Demo/MacDemo/MacDemo-Prefix.pch -------------------------------------------------------------------------------- /Demo/MacDemo/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVHTTPRequest/HEAD/Demo/MacDemo/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /Demo/MacDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Demo/MacDemo/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVHTTPRequest/HEAD/Demo/MacDemo/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Demo/MacDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVHTTPRequest/HEAD/Demo/MacDemo/main.m -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVHTTPRequest/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVHTTPRequest/HEAD/README.md -------------------------------------------------------------------------------- /SVHTTPRequest.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVHTTPRequest/HEAD/SVHTTPRequest.podspec -------------------------------------------------------------------------------- /SVHTTPRequest/SVHTTPClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVHTTPRequest/HEAD/SVHTTPRequest/SVHTTPClient.h -------------------------------------------------------------------------------- /SVHTTPRequest/SVHTTPClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVHTTPRequest/HEAD/SVHTTPRequest/SVHTTPClient.m -------------------------------------------------------------------------------- /SVHTTPRequest/SVHTTPRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVHTTPRequest/HEAD/SVHTTPRequest/SVHTTPRequest.h -------------------------------------------------------------------------------- /SVHTTPRequest/SVHTTPRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVHTTPRequest/HEAD/SVHTTPRequest/SVHTTPRequest.m --------------------------------------------------------------------------------