Created
March 30, 2010 18:35
-
-
Save agemooij/349416 to your computer and use it in GitHub Desktop.
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
#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