I just want to confirm that I'm understanding correctly, in Interface Builder the Class set under Class Identity (listed under Type in the name.xib summary window) is the class of the view whereas in IBOutlet Class *viewName the class listed describes the nature of the connection to Interface Builder, is this correct?
e.g.
Name__________________Type
File's Owner_____________SomeViewController
First Responder__________UIResponder
MyLabel________________UILabel
.
IBOutlet UILabel *lblMyLabel
UILabel is the class of the label and IBOutlet UILabel is the type of connection between the code and the IB object, right?
I ask because I subclassed UIImageView & updated the view's class but left the IBOutlet declaration as IBOutlet UIImageView and it still works so I assume the IBOutlet part is just a description or a guideline.