Skip to content

Instantly share code, notes, and snippets.

@agemooij
Created March 30, 2010 18:35
Show Gist options
  • Save agemooij/349416 to your computer and use it in GitHub Desktop.
Save agemooij/349416 to your computer and use it in GitHub Desktop.
#import "ActionViewController.h"
@implementation ActionViewController
@synthesize startButton;
@synthesize stopOrContinueButton;
- (IBAction) startButtonPressed {
NSLog(@"start button pressed");
}
- (IBAction) stopOrContinueButtonPressed {
NSLog(@"stop or continue button pressed");
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment