tags:

views:

237

answers:

1

I've seen a few articles, forum posts talking about uploading a file using NSURLRequest and NSURLConnection. Some of the ones I've seen are:

However, most of them don't include any sort of variables along with the file. Say I wanted to post the following variables (and their values) along with a photo:

user_id = 121
caption = this photo is awesome
thumbnail_x = 12
thumbnail_y = 0
thumbnail_w = 100
thumbnail_h = 200
photo = [file]

Is there a way to do this?

Or even better, is there already a class out there that builds on NSURLRequest that I could use?

+2  A: 

One word

ASIHTTPFormRequest

http://allseeing-i.com/ASIHTTPRequest/

Andiih
Thanks! Exactly what I was looking for.
synic