搜尋

首頁  >  問答  >  主體

objective-c - 在實作方法中宣告變數與在介面檔案中宣告實例變數有何不同?

如在m檔:

@interface KCLoginViewController (){
UITextField *_txtUserName;
UITextField *_txtPassword;
}

與在h檔:
@property UITextField *_txtUserName;
@property UITextField *_txtPassword;
這兩種方式有何差異呢?

迷茫迷茫2766 天前423

全部回覆(1)我來回復

  • 阿神

    阿神2017-04-24 09:13:44

    規範的語法是 @property UITextField *txtUserName; 不加底線,這種方法會自動生成getter setter方法,故可以用self.txtUserName來訪問,會創建一個_txtUserName的成員變量,

    而@interface KCLoginViewController (){
    UITextField *_txtUserName; UITextField *_txtPassword;
    }
    不會產生getter setteter方法,就只能用_txtUserName _txtPassword存取

    回覆
    0
  • 取消回覆