I want to be able in my app to upload files from my computer(windows,mac...) to the iPhone,so i an looking for a source code in objective-c that open server on iPhone,

but my question is, how i implement an upload from my computer to the device?

Edit


I want to upload the file from a computer that is on the same Network like the device, something like : the user will open browser and select a file and it will be upload to the device.

i found CocoaHTTPServer but i really didn't understand how to upload a file to the iPhone with this.

link|improve this question

Wouldn't be easier to download from the Mac/Pc to the device, instead of uploading to it? – Jacky Boy Dec 29 '11 at 11:48
This is a duplicate question: stackoverflow.com/questions/2242419/… – Lefteris Dec 29 '11 at 11:59
i saw this post,but they didn't add nothing about upload files... – MTA Dec 29 '11 at 12:03
1  
Take a look here: situee.blogspot.com/2011/03/… – Lefteris Dec 29 '11 at 12:09
feedback

1 Answer

  1. you probably want to upload the file to FTP-server, that shouldn't be a problem.
  2. set up a webservice or json on your server to know what changed, or should be downloaded (depends heavily on your business logic of your app) - it could also be a static textfile
  3. now the problem is how the app knows that there is are new files.
    • option 1: poll server if user presses a button or on every app start, etc.
    • option 2: send push notification to your iPhone app, if there are new file.

polling the server would be very easy to implement, compared to sending push notification.


EDIT: alright i read your edited post. hosting a local webserver on an iphone sounds still weird to me.

another possible solution, that could work for you - if you only want to transfer only a few and rather small files:

  • enable Document Interaction in your app.
  • this would allow the user to send the file by mail to your iphone and open the document with your app with the "open in..." dialog .
link|improve this answer
i make edit for my post.. – MTA Dec 29 '11 at 12:03
feedback

Your Answer

 
or
required, but never shown

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