I have a TableView, when you click add + button in nav bar, it brings up a modal view that will have another separate table in it which will have subviews etc.
So far, I have the tableViewController and the model view is in there as a UIView. My question is, how do I setup the tableViews that go in the modal view? Do I make new classes for the rootview and subviews etc? Should I switch the modal view to its own class also?
You can put the modal view in a Modal View Controller and do a presentModalViewControllerAnimated to show it.
The modal view controller is a UIViewController subclass and in that class you can manage all the stuff you want to do in your modal view.