Just a newbie with iPhone development.. I just have a small problem but huge confusion with regards to NIB files. In Cocoa, how can we change the File’s owner and First responder of a nib? And BTW, when can we actually say that we need more than one NIB file for a project in the first place?
Share
Change the class of File’s owner in Interface builder (select File’s owner and open Identity inspector). You don’t need to change anything in First responder.
As to your second question – you can build an entire project programmatically without nibs. I build mine with nibs for every view, controller, custom control etc.