TheSidebarController
TheSidebarController copied to clipboard
push/pop effects on changing the contentViewController
Hi,
I have a contentViewController which has a tableview inside it. I want to push the next view on selection of any row from the tableview. For that right now I am using this code...
self.sidebarController.contentViewController = contentViewController;
But, as we know it won't show any push effect. How to add push/pop effects in this case?
Hi @bhavinchitroda
Is the tableview embedded in a navigation controller?
Jon
Yes, it is. But, note that I want that sidebarcontroller in next "pushed" view also.
Hi, I'm use self.sidebarController.navigationController?.pushViewController(Class(), animated: true) from RightSideMenu but nothing happen