I have been reading up on File's Owner here on Stack Overflow and a few other resources, but I was left with one question. When do I not need a File's Owner for a nib? In chapter 8 of Exploring the iPhone SDK (a great book by the way) you design a table view cell nib. The author says the following:
You might be wondering why we're not doing anything with the File's Owner icon. The reason is that we just don't need to. We're using this table cell to display data, but all the interaction with the user is going to go through the table view, so it doesn't need its own controller class. We're really just using the nib as a sort of template so we can design our table cells visually.
This does not make sense to me. I was under the impression that all nib files needed a File's Owner, but obviously my understanding of this concept is not complete. Can someone restate when and why I don't need to worry about File's Owner?
