Apple says, that I need to have Outlets in my File's Owner for all my top level objects in a Nib file.
As much as I know, these objects are NOT the File's Owner itself (would make no sense, right?) and the First Responder.
I am unsure about: The View object in the Nib, and any controller object in the nib. Do I need an outlet for those in File's Owner?
This question is regarding memory management. They say:
You should always keep a pointer to these objects somewhere because your application is responsible for releasing them wen it is through using them
So when the user closes the app, I would have a clunky memory leak if I'd miss those outlets?