I am making a xml/soap request class which gets data asynchronously from .NET web service. I call this class from another class which is a View Controller. Now the problem is that as it is asynchronous i don't have the idea when the result will come and delegates be fired, and need to return the data to view controller class.
Question: How would I wait in view controller Class for data?
Note: Can't use Notification
