I am developing an app that will request the profile picture URL of some users from Facebook servers, but I don’t know how many users I will have (it might be 2 or it might be 20). Should I use ASIHTTPRequest with a loop and a synchronous request, or the API graph (with Facebook SDK for iOS) with a loop?
I am developing an app that will request the profile picture URL of some
Share
Trying using ASINetworkQueue. It will allow you to create a queue of ASIHTTPRequests that can still be started asynchronously. For example