Sorry if this has been asked already but I've searched and haven't found an answer to the specific case I'm finding myself in right now.
I'm subclassing UITableViewController
. I don't have a custom nib for it. I also have a custom tableview
cell
that I'm implementing that does have it's own custom nib. When I'm creating the outlet for this cell should I be creating a weak reference? Because it ends up as a subview of the TableViewController
I would think yes but the Apple docs also note that top level objects in a nib should be strong so I'm confused. Any help would be appreicated!