SiteMap

2013年8月19日月曜日

iOS - Hello World

iOS - Hello World

建立個專案
選擇 single view (自動記憶體管理記得打勾)
拉進個 UILabel, UIButton

UILabel 是用作顯示文字用
UIButton 是用作互動回饋用

目標:UILabel 上面文字本來是 “ Show Your Message ! ”
 當我們按下Button的時候,UILabel 上面的文字會變成
“ Hello World !! ”

滑鼠對 UILabel 拖移到 ViewControll.h , connection 選擇 outlet ,命名為 lblDisplayMsg
同樣對 UIButton 右鍵拖到 ViewControll.h , connection 選擇 outlet ,命名為 btnOK

接著命名方法
對 UIButton 右鍵拖到 ViewControll.h , connection 選擇 action ,命名為 btnOK_Click

名稱宣告完畢了

接著要實作方法 btnOK_Click

打開 ViewControll.m ,可以從最下面看到

- (IBAction)btnOK_Click:(id)sender {
}

在裡面塞入Your are shock,歐不,是 Hello World
變成下面這樣


- (IBAction)btnOK_Click:(id)sender {
   
    self.lblMsg.text = @"You are shock!";
     
}

請注意一定要打 self
請注意一定要打 self

沒有打什麼都沒有哈哈

0 件のコメント: