Skip to content

Instantly share code, notes, and snippets.

@maddox
Created October 7, 2008 21:25
Show Gist options
  • Save maddox/15393 to your computer and use it in GitHub Desktop.
Save maddox/15393 to your computer and use it in GitHub Desktop.
- (void)viewDidLoad {
self.title = @"Finding tweets...";
// get tweets
[NSThread detachNewThreadSelector:@selector(getTweets) toTarget:self withObject:nil];
}
- (void)getTweets{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
// DO STUFF HERE
[pool release];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment