多视图 iOS 应用程序约定

发布于 2024-11-03 08:05:45 字数 127 浏览 0 评论 0原文

我是开发 iOS 应用程序的新手,但我有一个关于实现多视图应用程序的快速问题。

我假设要创建一个具有多个视图的应用程序,我必须创建视图控制器类,并在我的 appDelegate 类中实例化所有这些类,以便在视图之间来回切换?

I'm new to developing iOS applications, but I have a quick question about implementing a multi-view application.

I'm assuming to create an application with multiple views I must create my view controller classes, and instantiate all of them within my appDelegate class in order to switch back and forth between views?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦在夏天 2024-11-10 08:05:45

或许。

使用 UINavigationController,您通常会在当前视图控制器中实例化它们,以响应某些用户操作,然后将新控制器推送到 UINavigationController 堆栈上。

如果您使用的是 UITabBarController,则需要在将它们放入选项卡栏中之前实例化它们,因此您可以在 application:didFinishLaunchingWithOptions: 的应用程序委托中执行此操作。

这取决于您计划如何在它们之间切换。

Maybe.

With a UINavigationController you typically instantiate them in your current view controller, in response to some user action, then push the new controller onto the the UINavigationController stack.

If you're using a UITabBarController, you need to instantiate them before you put them in the tab bar, so you might do that in the app delegate in application:didFinishLaunchingWithOptions:.

It depends on how you plan to switch between them.

初雪 2024-11-10 08:05:45

UINavigationController 是你的朋友 Casey。 .这个教程将对此进行解释..无需在appDelegate中创建所有viewController。

UINavigationController is your friend Casey..This tutorial will explain it..No need to create all viewControllers in appDelegate.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文