Created
June 15, 2014 06:04
-
-
Save bobspryn/d11972fbbeef55397a81 to your computer and use it in GitHub Desktop.
inputs.m
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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