Top "Nsurlsessionuploadtask" questions

The NSURLSessionUploadTask class is a subclass of NSURLSessionDataTask, which in turn is a concrete subclass of NSURLSessionTask.

How to get server response data in NSURLSession without completion block

I am using NSURLSession for background image uploading. And according to uploaded image my server gives me response and I …

ios nsurlsession nsurlsessionuploadtask
URLSessionUploadTask getting automatically cancelled instantly

I'm having this weird issue in which a newly created URLSessionUploadTask gets cancelled instantly. I'm not sure if it's a …

ios nsurlsession swift3 xcode8 nsurlsessionuploadtask
iOS - How to upload a video with uploadTask?

I need to upload an mp4 video file from iPhone/iPad to a server, also in the background, so I …

ios swift3 nsurlsessionuploadtask
Pause,Resume,Cancel Upload Task Using NSURLSession UploadTask

I am developing an app to upload multiple files using NSURLSession, right now my files are successfully uploaded. But now …

ios objective-c ios7 nsurlsession nsurlsessionuploadtask
unable to upload file using NSURLSession multi-part form data in iOS

I am trying to upload a video / image file using- (NSURLSessionUploadTask *)uploadTaskWithRequest:(NSURLRequest *)request fromFile:(NSURL *)fileURL; method using multi-part …

file-upload multipartform-data nsurlsession nsurlsessionuploadtask nsurlsessionconfiguration