在我的頭文件我有:什麼變量名使用
IBOutlet UITextField * _userNameOrEmail;
IBOutlet UITextField * _password;
@property (retain) IBOutlet UITextField * userNameOrEmail;
@property (retain) IBOutlet UITextField * password;
我在執行我:
@synthesize userNameOrEmail=_userNameOrEmail, password=_password;
當我進入我的筆尖文件,我可以拖動的UITextField,它給我的選項_userNameOrEmail和userNameOrEmail
哪一個我應該使用?
使用_userNameOrEmail –