Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
1  
You don't wait for data; once the delegates have all the information required (or enough to display something) they update the view controller with the information. Else it would behave as if it was a synchronous request. – trojanfoe Jan 30 at 8:12
Yes exactly, soo i am calling asihttprequest class into a GCD or NSOperationQueue block now working fine. Just canceling this request is creating problem. Thanks for your response :) – ghazi_jaffary Feb 1 at 7:00

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.