Equivalent to the Android volley library for handling multiple simultaneous downloads in iOS

In my current project, I need to upload 16 images at a time. On android, they use volley library for this. In iOS, how can we do this? I know this is a bit complicated thing. I have 16 buttons on the user interface and the user must use any button to upload images at the same time as selecting images from the gallery. Thus, a maximum of 16 downloads at a time.

+5
source share
1 answer

You can use the Restkit library for any network requests. It is built on top of the AFNetworking library. - RestKit

-1
source

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


All Articles