Basic question here about the structure of a basic iOS MVC app..
I know IBOutlets are used for accessing view elements such as buttons and labels and such and modifying or getting their values..
Is it normal though to use an IBOutlet to access another object in your app FROM a view??
For example..
@interface CustomView : UIView {
IBOutlet Person *person;
}
Should we use an outlet to the person(Model) in order for the view to display information about the person?
Or should the view just instantiate a Person object directly without using IBOutlets and Interface Builder.
Thank you for your clarifications.
*For some reason, the tutorial I'm following put the Model class in the nib.