Reputation: 16730
I have a MainViewController
class set up with a simple nib. On the nib i have only these few objects. I have set the popoverViewController's file owner to the MainViewController.
I have set the popoverViewController class to my PVController
class so that i can put buttons/code/labels etc.
The Popover works fine, but somethings are is puzzling me which i need help to understand.
Upvotes: 0
Views: 166
Reputation: 46543
So my first question is, will there be any problems if i do not alloc/init an IBOutlet in FileOwner
NO, there will not be any problem. Infact IBOutlets are never alloc+init manually.
Upvotes: 1