在CosmicMind / Material库中,他们展示了如何一次使用一个模块,例如:
window = UIWindow(frame: Device.bounds)
window!.rootViewController = AppToolbarController(rootViewController: RootViewController())
window!.makeKeyAndVisible()
如果我想向相同的模块添加另一个模块怎么办rootViewController
:
带有NavigationDrawerController的ToolbarController?
我是 iOS 和 Swift 的新手,非常感谢您的帮助。