Skip to content

Instantly share code, notes, and snippets.

@bobspryn
Created June 15, 2014 06:04
Show Gist options
  • Select an option

  • Save bobspryn/d11972fbbeef55397a81 to your computer and use it in GitHub Desktop.

Select an option

Save bobspryn/d11972fbbeef55397a81 to your computer and use it in GitHub Desktop.
inputs.m
// delegate methods
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
}
- (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
}
// block based callbacks
[TCAPI getCategoriesModifiedSince:date onComplete:^(NSArray *objects, RKObjectRequestOperation *operation, NSError *error) {
}];
// target action
- (IBAction)doneAction:(id)sender {
}
// timers
[NSTimer scheduledTimerWithTimeInterval:.1 target:self selector:@selector(spinIt:) userInfo:nil repeats:YES];
// KVO
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment