在xcode 中File --> New --> Project 選擇Single View Application,點擊next,
在Product Name 欄輸入ButtonFun,Device欄選擇iphone,點擊Next,選擇項目存放位置,點擊Create創建項目
xcode使用故事板,如果不需要直接刪除即可,新建ViewController.xib : File --> New -->File 在彈出框中左側選擇User Interface ,右側選擇View,點擊Next,輸入名稱ViewController點擊create即可創建ViewController.xib文件
點擊ViewController.xib文件,點擊左側第一個立方體File's Owner,然後在右側選項卡頂部第三個選項卡下Custom Class 的class 中輸入ViewController確定即可。
在ViewController.m文件中viewDidLoad方法中添加如下代碼即可加載xib文件:
- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. UIView *rootView = [[[NSBundle mainBundle]loadNibNamed:@"ViewController" owner:self options:nil]lastObject]; self.view = rootView; }
打開ViewController.xib,從xcode的右下角第三個選項卡中將Button 和Label拖入xib中,
點擊菜單欄View --> Assistant Editor --> Show Assistant Editor 可以打開兩個編輯欄,在左右側分別顯示ViewController.xib和ViewController.h文件,
按住control鍵 鼠標點擊Button拖動會出現一根藍色的線, 然後拖動到ViewController.h中,在彈出框中connection項選擇Action,name欄輸入buttonPressed點擊connect;
再次拖動Button到buttonPressed方法中進行事件綁定;
相同方法將Label拖到ViewController.h中,彈出框中connection項選擇Outlet,name欄輸入statusLabel點擊connect;
ViewController.h代碼如下:
@interface ViewController : UIViewController @property (weak, nonatomic) IBOutlet UILabel *statusLabel; - (IBAction)buttonPressed:(id)sender; @end
現在打開ViewController.m方法,會有一個空的方法體:
- (IBAction)buttonPressed:(id)sender { }添加代碼:
- (IBAction)buttonPressed:(id)sender { NSString *title = [sender titleForState:UIControlStateNormal]; _statusLabel.text = plainText; }