In chapter 3, the author has us declare the following property:
Code:
@property (nonatomic, retain) UITextField txtName;
Why declare this as a property of the controller? The text field is already a member of the view and can be accessed from the controller code. Is this a stylistic preference or does it have some functional value that I am missing?