I have a modal view controller that I put onto screen using presentModalViewController:animated. This particular view controller, an instance of UIViewController, has a UITableView and cells with further detailAccessory options. Clicking on a date row should allow a controller with UIDatePicker to populate on the screen. The problem is this:
1) You cannot put two modalView's onto screen at once. 2) Because of constraint #1, I have to use UINavigationController and pushViewController:animated:. What this does is push my controller with a UIDatePicker on top of the stack, but physically BELOW my modalViewController.
Does this imply that my modalViewcontroller needs its own UINavigationController? What's the best bet to go about this?