アクション君とアウトレットさん
iPhoneのシキタリを身体に覚えさせるために、はじめてのiPhoneプログラミングを粛々と写経中。
IBOutletとIBActionの書き方がいつまでたっても覚えられないことに絶望したため、ここにそのサンプルを記す。
// Button_FunViewController.h ... @interface Button_FunViewController : UIViewController { // <<< IBOutlet >>> IBOutlet UILabel *statusText; } // <<< Property >>> @property (retain, nonatomic) UILabel *statusText; // <<< IBAction >>> -(IBAction)buttonPressed:sender; @end
// Button_FunViewController.m @implementation Button_FunViewController // <<< Synthesize >>> @synthesize statusText; // <<< IBAction >>> - (IBAction)buttonPrressed:(id)sender { // do something } ...