Created
June 15, 2010 19:07
-
-
Save ejknapp/439537 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
| // | |
| // OutletActionDemoViewController.h | |
| // OutletActionDemo | |
| // | |
| // Created by Eric Knapp on 6/15/10. | |
| // Copyright __MyCompanyName__ 2010. All rights reserved. | |
| // | |
| #import <UIKit/UIKit.h> | |
| @interface OutletActionDemoViewController : UIViewController <UITextFieldDelegate> { | |
| UILabel *myLabel; | |
| } | |
| @property (nonatomic, retain) IBOutlet UILabel *myLabel; | |
| -(IBAction)clickTheButton; | |
| @end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment