Is there a reason why I can't add a UISplitviewController as the child of a UITabBarController in Interface Builder?
I realize I could do this programatically, but all of a sudden I'm questioning if this is a legit way to go.
This is what I'm planning on doing:
- Create a Master View Controller (UITableViewController with accompanying NIB)
- Create a Detail View Controller (UIViewController with accompanying NIB)
- Subclass UISplitviewController
- Attached the above to my Tab Bar Controller instance in Interface Builder by adding a UIViewController instance as a child, then changing the class name to my splitviewCont subclass (in Interface Builder).
This sounds kind of boneheaded to me. Is there a "recommended" way to go about this?