I'm writing an iPhone app for a web service and I need to upload image to the service. In the web version, it's using AJAX. But I know little about that. I find the following code on the web page for the upload button:

        if (button.length) {
        new AjaxUpload(button, {
            action: '/Media/UploadFile',
            responseType: 'json',
            onSubmit: function (file, ext) {
                $('#bBar').progressBar(0);
                var uid = createUUID();
                timerID = setTimeout(function () { checkImageUploadProgress(uid, 1, 'image') }, 1000);
                startUpload();
                this.setData({ fileType: 1, guid: uid, DJUploadStatus: '::DJ_UPLOAD_ID::' + uid });
            },
            onComplete: function (file, response) {
            }
        });
    }

How should I implement this function using the NSConnection class?

link|improve this question

63% accept rate
Try searching for it! There are plenty of codes for that on SO. – vikingosegundo Aug 12 '11 at 7:37
feedback

1 Answer

up vote 0 down vote accepted

FTP vs HTTP upload on iPhone

upload image from iPhone application

Upload image along with other data in same POST

iPhone UIImage upload to web service

And there's plenty more. I'm sure you'll manage to do it the answers to these questions.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.