0

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

4

2 回答 2

1

是的,您应该使用 NavigationController,它是 UINavigationController 的子类,并为您提供与 ToolbarController 完全相同的外观。这是一个NavigationController 示例项目:) 一切顺利

于 2016-12-21T17:04:05.797 回答
0

据我了解,您想从 Toolbar 控制器展示一个视图控制器。

用这个:

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

确保在 Storyboard 上为要呈现的视图控制器设置视图控制器标识符。在这种情况下,标识符是:

第二视图控制器

于 2016-12-21T18:24:24.620 回答