検索

ホームページ  >  に質問  >  本文

objective-c - 在实现方法中声明变量与在接口文件中声明实例变量有何不同?

如在m文件中:

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

与在h文件中:
@property UITextField *_txtUserName;
@property UITextField *_txtPassword;
这两种方式有何差异呢?

迷茫迷茫2766日前421

全員に返信(1)返信します

  • 阿神

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

    標準の構文は、下線なしの @property UITextField *txtUserName です。このメソッドは getter setter メソッドを自動的に生成するため、self.txtUserName でアクセスでき、_txtUserName のメンバー変数が作成されます。

    そして @interface KCLoginViewController (){

    UITextField *_txtUserName; UITextField *_txtPassword;
    }
    getter setter メソッドは生成されないため、_txtUserName _txtPassword でのみアクセスできます

    返事
    0
  • キャンセル返事