Skip to content

Instantly share code, notes, and snippets.

@syshen
Created March 4, 2015 14:53
Show Gist options
  • Select an option

  • Save syshen/e9027d8d03fd073bba8a to your computer and use it in GitHub Desktop.

Select an option

Save syshen/e9027d8d03fd073bba8a to your computer and use it in GitHub Desktop.
- (RACCommand*) refreshCommand {
if (_refreshCommand)
return _refreshCommand;
_refreshCommand = [[RACCommand alloc] initWithSignalBlock:^RACSignal *(id input) {
return [[HNClient sharedClient] topStories];
}];
return _refreshCommand;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment