├── README.md ├── URLSessionTest.xcodeproj └── project.pbxproj ├── URLSessionTest ├── Base.lproj │ └── Main.storyboard ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── NEVAppDelegate.h ├── NEVAppDelegate.m ├── NEVUploadController.h ├── NEVUploadController.m ├── NEVViewController.h ├── NEVViewController.m ├── URLSessionTest-Info.plist ├── URLSessionTest-Prefix.pch ├── en.lproj │ └── InfoPlist.strings └── main.m ├── URLSessionTestTests ├── URLSessionTestTests-Info.plist ├── URLSessionTestTests.m └── en.lproj │ └── InfoPlist.strings └── upload.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevyn/URLSessionTest/HEAD/README.md -------------------------------------------------------------------------------- /URLSessionTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevyn/URLSessionTest/HEAD/URLSessionTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /URLSessionTest/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevyn/URLSessionTest/HEAD/URLSessionTest/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /URLSessionTest/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevyn/URLSessionTest/HEAD/URLSessionTest/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /URLSessionTest/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevyn/URLSessionTest/HEAD/URLSessionTest/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /URLSessionTest/NEVAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevyn/URLSessionTest/HEAD/URLSessionTest/NEVAppDelegate.h -------------------------------------------------------------------------------- /URLSessionTest/NEVAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevyn/URLSessionTest/HEAD/URLSessionTest/NEVAppDelegate.m -------------------------------------------------------------------------------- /URLSessionTest/NEVUploadController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevyn/URLSessionTest/HEAD/URLSessionTest/NEVUploadController.h -------------------------------------------------------------------------------- /URLSessionTest/NEVUploadController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevyn/URLSessionTest/HEAD/URLSessionTest/NEVUploadController.m -------------------------------------------------------------------------------- /URLSessionTest/NEVViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevyn/URLSessionTest/HEAD/URLSessionTest/NEVViewController.h -------------------------------------------------------------------------------- /URLSessionTest/NEVViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevyn/URLSessionTest/HEAD/URLSessionTest/NEVViewController.m -------------------------------------------------------------------------------- /URLSessionTest/URLSessionTest-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevyn/URLSessionTest/HEAD/URLSessionTest/URLSessionTest-Info.plist -------------------------------------------------------------------------------- /URLSessionTest/URLSessionTest-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevyn/URLSessionTest/HEAD/URLSessionTest/URLSessionTest-Prefix.pch -------------------------------------------------------------------------------- /URLSessionTest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /URLSessionTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevyn/URLSessionTest/HEAD/URLSessionTest/main.m -------------------------------------------------------------------------------- /URLSessionTestTests/URLSessionTestTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevyn/URLSessionTest/HEAD/URLSessionTestTests/URLSessionTestTests-Info.plist -------------------------------------------------------------------------------- /URLSessionTestTests/URLSessionTestTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevyn/URLSessionTest/HEAD/URLSessionTestTests/URLSessionTestTests.m -------------------------------------------------------------------------------- /URLSessionTestTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevyn/URLSessionTest/HEAD/upload.php --------------------------------------------------------------------------------