Implementing a mini server in Objective-C

I am trying to implement a small server service to upload files via a web browser to my iOS application. An example of this function is implemented in the following application:

http://itunes.apple.com/uy/app/files-document-reader/id294150896?mt=8

It seems very simple, but I don’t know where to start. I also searched for hints or some code examples about this kind of implementation without success, but maybe I just don’t know how to solve the problem correctly.

Any hints, guides, links, etc ??

Thank you in advance

+4
source share
1 answer

Here is a wrapper for embedding the moongoose http server in your iphone application. Another simple http server is here . The latter is the one I used in my application recently.

EDIT:

There is at least a third too.

+7
source

Source: https://habr.com/ru/post/1344334/


All Articles