I’m having an issue with Interface Builder that’s driving me up the wall, and was wondering if anyone could shed some light on the issue. In a nutshell, I have a view controller with a hierarchal view layout that looks like this:
UIViewController UIView (Content view) UITableView (fills content view)
I made this earlier when I expected to add something else to the content view, but I’ve thought about it and realized I don’t want this anymore. I want the layout to look like this instead:
UIViewController UITableView (this is now the content view)
i.e. what happens when you drag a table view to a view controller without a content view in Interface Builder–it fills it and becomes the content view itself. Of course, this would be easy to do if I deleted the UIView and dragged a new UITableView in, but I’ve configured it a lot and would prefer a copy/paste or dragging solution that doesn’t break the majority UITableViewCell layout and outlets I have hooked up.
Thanks,
|