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'm using iOS XMPPFramework and the method - (void)fetchRoster; of XMPPRoster to fetch the latest update roster before create and return other different lists (Suppose that List1, List2, List3, ...) so I want to make sure that the roster I fetched is up to date including its subscription and ask attributes.

XMPPRosterCoreDataStorage and XMPPRosterMemoryStorage would not up to date without - (void)fetchRoster; call. So I tried to get the latest roster in - (BOOL)xmppStream:(XMPPStream *)sender didReceiveIQ:(XMPPIQ *)iq

The problem is that List1, List2, List3, ... may be requested at the same time and one request will replace previous one.

So I think of the concept of using blocks programming might help to guarantee that - (void)fetchRoster; is already finished before the process of creating List1, List2, List3, ... and one request will not replace the previous one.

How can I fetchRoster using blocks? However if I'm on the wrong way or there are better options please suggest me.

share|improve this question

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.