gpt4 book ai didi

ios - 将来自不同 ViewController 的数据与相同的父级连接起来

转载 作者:行者123 更新时间:2023-11-29 02:19:59 25 4
gpt4 key购买 nike

所以我有 2 个使用相同数组的不同 TableView (该数组最初是在 Role TableView 中创建的,如下所示)。我怎样才能把这两者联系起来?(通常我使用 prepareForSegue 来传递数据,但由于没有 segue,我不确定我该怎么做)

enter image description here

编辑 1:添加数组的位置。

最佳答案

什么是模型以及为什么需要它

在大多数情况下,如果没有数据模型,传递数据是没有用的。您可以使用称为数据持久性的技术来存储数据。

您可以使用的模式示例是 MVC。 MVC或 Model View Controller 是一种在制作 iOS 应用程序时广泛使用的软件模式。在这种架构模式中, Controller 是 View 和模型之间的桥梁。

在此特定场景中,两个 UITableViewController 将使用相同的模型,但它们会以不同的方式显示此数据。

持久化你的模型

有几种方法可以做到这一点,我最喜欢的方式是一个名为 CoreData框架。 ,你可以看到this问题以供引用。

您还可以引用this问题来看看Singletons的使用。但请记住,仅单例并不能持久保存数据。如果您希望数据在应用程序 session 之间保留在那里,则必须添加某种机制。

保留用户偏好

存储小块数据的最简单方法是使用 NSUserDefaults (但它仅用于存储默认值):

假设您有一个数组

NSArray* testArray = @[@"first", @"second", @"third"];

您可以使用以下方法将其设置为键

[[NSUserDefaults standardUserDefaults] setObject:testArray forKey:@"myArray"];

您可以使用同步NSUserDefaults

[[NSUserDefaults standardUserDefaults] synchronize];

然后,您可以在应用程序中的任何位置阅读它

[[NSUserDefaults standardUserDefaults] objectForKey:@"myArray"]

通过应用传递数据

另一方面,您必须以某种方式传递数据。为此,您可以使用正式协议(protocol),特别是委托(delegate)。根据 Apple documentation :

In a delegate-based model, the view controller defines a protocol for its delegate to implement. The protocol defines methods that are called by the view controller in response to specific actions, such as taps in a Done button. The delegate is then responsible for implementing these methods. For example, when a presented view controller finishes its task, it sends a message to the presenting view controller and that controller dismisses it.

Using delegation to manage interactions with other app objects has key advantages over other techniques:

  • The delegate object has the opportunity to validate or incorporate changes from the view controller.

  • The use of a delegate promotes better encapsulation because the view controller does not have to know anything about the class of the delegate. This enables you to reuse that view controller in other parts of your app.

有关通过 View Controller 传递数据的更多信息(这个问题的要点)请查看 this所以回答。

关于ios - 将来自不同 ViewController 的数据与相同的父级连接起来,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28263752/

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