Skip to content

Instantly share code, notes, and snippets.

@dennda
Created November 12, 2011 21:40
Show Gist options
  • Save dennda/1361158 to your computer and use it in GitHub Desktop.
Save dennda/1361158 to your computer and use it in GitHub Desktop.
// For some reason (maybe ARC?) this doesn't work:
// [self.client respondToMessage:self];
// But this still works...
[self.client performSelector:@selector(respondToMessage:) withObject:self];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment