Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个基于选项卡的应用程序,绘制了笔尖设计的视图和实用设计的视图。尽管类型不同,如何将它们连接到 UITabBarController 中?
你是如何创建它的?
您一定已经分配了它并且应该调用了一些初始化方法。可能是initWithStyle?
一旦完成,并且您所有的子视图的创建、配置、布局和添加都完成了,您想要显示它。打电话
[self.navigationController pushViewController:yourProperlySetUpViewController animated:YES];
如果你做的一切正确,那么它应该正确显示。
...我误解了你的问题吗?