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.