I am working on app in which I am consuming a lot of web-services, there is specific task for which I need to execute multiple async request simultaneously and I am bit confused while doing this ask as i want to do this task in optimal way as web service takes time while executing. The task is to execute multiple async request simultaneously and return the response to Main using callback. So I want to know what should I use for such task , like GCD, NSOperation or AFNetworking?
How should i make structure for such task.
Please help me out in this.