Questions
Questions

Reputation: 20875

How to upload a file to server on objective C?

I want to ask a question about the objective C. I have create a .csv file and I want to upload to a server. However, I have no idea on how to do it. Can anyone provide any example or library for me to do? Thank you very much.

Upvotes: 2

Views: 2218

Answers (1)

Jorge Israel Peña
Jorge Israel Peña

Reputation: 38576

I think you will have an easier time doing this with ASIHTTPRequest, specifically, take a look at this sample code that shows how to upload a file.

Then, for actually initiating the request, take a look at creating an asynchronous request.

Upvotes: 2

Related Questions