UIView 和 UIViewController 有什么区别?

发布于 2024-10-11 19:09:57 字数 369 浏览 4 评论 0原文

我需要详细解释以下内容:

我们使用 UIViewController 做什么? 它有什么用呢?

我有一个如下所示的类:

class one
{
    UINavigationController *nav = ...;

    two *secondObject = ...;

    // By use of it, I have push the new view class two//ok
}
class two
{
 ...
}

如何在 one 类中使用 secondObject

什么是从窗口开始的类层次结构?

I need a detailed explanation on the following:

What do we use a UIViewController for?
What is the use of it?

I have a class that looks like the following:

class one
{
    UINavigationController *nav = ...;

    two *secondObject = ...;

    // By use of it, I have push the new view class two//ok
}
class two
{
 ...
}

How can I use secondObject in the class one?

What is the class hierarchical start from the window?

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

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

发布评论

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

评论(2

妄想挽回 2024-10-18 19:09:57

UIViewControllerMVC 设计模式中的控制器部分。

模型<-------->控制器<-------->View

控制器的任务是处理不同视图之间的导航、按键和屏幕触摸等。

The UIViewController is the controller part in the MVC design pattern.

Model<------->Controller<------->View

The controller's task is to handle navigation between different views, key presses, and screen touches etc.

眼波传意 2024-10-18 19:09:57

视图只是一个对象,有点像一张纸,上面放置了其他对象。

视图控制器是一个控制视图的对象,可以在导航堆栈中向前和向后推送和弹出视图。

"iOS 视图控制器编程指南"

A view is merely an object, kind of like a piece of paper, that other objects are put onto.

A View Controller is an object that controls views, pushing and popping them forwards and backwards in a navigation stack.

"View Controllers Programming Guide for iOS"

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