Skip to content

Instantly share code, notes, and snippets.

@benlangfeld
Created September 19, 2010 17:11
Show Gist options
  • Save benlangfeld/586942 to your computer and use it in GitHub Desktop.
Save benlangfeld/586942 to your computer and use it in GitHub Desktop.
- (void)sendStanzaToRoster:(TNStropheStanza)aStanza
{
var contacts = [roster contacts];
for (var i=0; i < [contacts count]; i++)
{
var contact = contacts[i];
[contact sendStanza:aStanza andRegisterSelector:nil ofObject:nil];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment