How to upload .csv file to server using code in iphone(ios)?
I want to upload 开发者_如何学C.csv file on server while i get .csv file in my project . Can any one help me in that ?
You need to create web service on your server that accepts data of csv file as input. Then you can use NSURLConnection or use NSData's writeToURL:atomically: method
精彩评论