gpt4 book ai didi

iphone - 了解 Cocoa Touch 中的 MVC 设计模式

转载 作者:可可西里 更新时间:2023-11-01 04:40:22 27 4
gpt4 key购买 nike

通常我只是以任何随机方式组合一个应用程序,只要它能正常工作,但这意味着我不会关注任何设计模式。我的应用程序目前广泛使用全局变量(我在每个 View Controller 中都携带了一个 AppDelegate 实例,以访问我在 AppDelegate.h 中声明的属性)。虽然它做了我想要它做的事,但我读到这不是一个好的设计实践。

所以我想开始让我的代码“合法”。但是,如果没有全局变量,我现在无法想象我的应用程序。它们对应用程序的运行非常重要,但这一定意味着我做错了什么,对吧?我无法想象我还能做些什么。以此为例:

enter image description here

这里有两个 View Controller ,SideViewControllerMainViewController。使用全局变量,例如如果整个应用程序有一个 SideViewControllerMainViewController 的共享实例(appDelegate.sideViewControllerappDelegate. mainViewController),我可以轻松地在两个 View Controller 之间进行通信,因此如果我在我的 SideViewController 中按下“News Feed”,我可以告诉我的 MainViewController重新加载它的 View 。

但是,我无法想象,如果这些不是全局变量,这将如何完成?如果在我的 SideViewController 中发生事件,我将如何以符合设计标准的方式通知我的 MainViewController

最佳答案

I can't imagine, however, how this would be done if these were not global variables? If an event occurs in my SideViewController, how would I notify my MainViewController, in a way that is in accordance with design standards?

除了 SideViewController 从不同的地方获取对 MainViewController 的引用外,与您现在的方式相同。

这两个 View Controller 是如何创建的?它很可能以两种方式之一发生:

  1. 其中一个对象创建另一个对象。在这种情况下,MainViewController 可能会创建 SideViewController。

  2. 一些其他对象,例如应用委托(delegate)或另一个 View Controller ,创建它们。

在第一种情况下,MainViewController 在创建 SideViewController 后立即引用它。它可以将该引用存储在它自己的实例变量之一中,以便它始终可以向它创建的 SideViewController 发送消息。同样,MainViewController 可以为 SideViewController 提供对自身的引用(即对 MainViewController 的引用),SideViewController 可以存储该引用并在将来使用它与其 MainViewController 通信。

第二种情况类似——如果应用委托(delegate)(或其他对象)创建了 MainViewController 和 SideViewController,该对象知道这两个对象并且可以通过对另一个对象的引用来配置每个对象。

在这两种情况下,所讨论的对象都能够像以前一样轻松地相互通信,并且不需要全局变量。

我上面所解释的可能是完成您所要求的最简单的方法——两个对象之间的通信。有许多模式可用于细化这些对象之间的关系,从而使您的代码变得更好:

  • 委托(delegate):为 SideViewController 提供一个委托(delegate)属性,并定义一些协议(protocol)来确定 SideViewController 对其委托(delegate)的期望。在 MainViewController 中实现该协议(protocol)。使您的 MainViewController 实例成为 SideViewController 的委托(delegate)。 SideViewController 不需要确切地知道它的委托(delegate)是什么类型——它只关心它的委托(delegate)实现了所需的协议(protocol)。如果机会出现,这使得将 SideViewController 与 MainViewController 以外的其他东西一起使用变得容易,或者在不同的项目中使用它。

  • 通知:SideViewController 甚至可能不需要委托(delegate)——它可以简单地将关于某些事件的通知广播到恰好正在监听的任何对象。如果多个对象可能需要了解 SideViewController 中发生的某事,或者如果关心 SideViewController 的操作的对象可能发生变化,这一点尤其有效。

  • MVC:SideViewController 只是更改模型中的数据,而不是告诉 MainViewController 某些内容已更改。每当 MainViewController 的 View (或任何其他 View Controller 的 View )出现时, Controller 都会从模型中读取数据并重新显示自身。

如果您有兴趣,您可能想要拿一本 Erik Buck 的 Cocoa Design Patterns,其中非常详细地解释了这些模式和许多其他模式。不要觉得你必须一下子学会所有的东西,或者觉得太麻烦了。一次学习一点点,看看它如何改善(或不改善)您的项目。

关于iphone - 了解 Cocoa Touch 中的 MVC 设计模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9780858/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com