I want to dismiss the presented view controller and have the presenting view controller push this new view controller.
A modal view controller usually represents some sort of question, like What photo do you want to see? or Which contact do you want to talk to? The modal view controller should let the user indicate an answer, and then it should return that answer to its parent, the presenting controller. That presenting view controller is the one that should be in charge of what to do next. Dismiss the modal controller? Adjust the data model? Push a new controller onto the navigation stack?
Think of the relationship between the presenting view controller and the modal controller as an employment agreement, where the presenting controller is a manager and the modal controller is a worker. The worker might do some task at the manager's request and then report back, so that the manager can decide what to do next. But a worker wouldn't tell the manager what to do -- that's not the worker's job.
didSelectRowAt
? So the modal table view controller first appears, then the user taps a cell and then you want to present something from the non-modal parent view controller??? – meaning-matters