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.
我正在尝试重新创建 Notes(native) 显示帐户后退按钮的方式。在我的项目中,我想使用底部的选项卡栏加载一个视图,并且该视图有一个返回按钮指向另一个视图,就像在 Notes 中一样。我怎样才能做到这一点?
您必须将 UIViewController 放入 UINavigationController,然后显示包含您的 UIViewController 的 NavigationController。您的视图顶部应该有一个导航栏。如果没有,请在您的 UIViewController 中执行以下操作:
[self.navigationcontroller setNavigationBarHidden:NO];
希望有帮助