Push view controller in ToolbarController Material

330 Views Asked by At

I'm using Material framework by cosmicmind for my iOS app. My main interface is a ViewController embedded in a ToolbarController. Is there any way to achieve animation like pushViewController in a UINavigationController?

I've tried the transition function with no luck. Thanks in advance

2

There are 2 best solutions below

0
On BEST ANSWER

Yes, you should use the NavigationController, which is a subclass of UINavigationController and gives you the exact same look as the ToolbarController. Here is a NavigationController sample project :) All the best

3
On

As I understand, you want to present a view controller from Toolbar controller.

Use this:

if let vc = UIStoryboard(name:"Main", bundle:nil).instantiateViewController(withIdentifier: "SecondViewController") as? SecondViewController {
        self.present(vc, animated: true, completion: nil)
    }

Make sure that you set view controllers identifier on Storyboard for the view controller you want to present. In this case identifier is:

SecondViewController