Skip to content

Instantly share code, notes, and snippets.

@blacklee
Created February 17, 2014 05:41
Show Gist options
  • Save blacklee/9045300 to your computer and use it in GitHub Desktop.
Save blacklee/9045300 to your computer and use it in GitHub Desktop.
performselectoronmainthread and get return value
// http://stackoverflow.com/a/3346157/490794
// call
NSMutableDictionary *myDict;
[object performSelectorOnMainThread:@selector(getElements:)
withObject:&myDict waitUntilDone:YES];
// define
- (void)getElements:(NSMutableDictionary **)objects;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment