- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我有 2 个使用相同数组的不同 TableView (该数组最初是在 Role TableView 中创建的,如下所示)。我怎样才能把这两者联系起来?(通常我使用 prepareForSegue 来传递数据,但由于没有 segue,我不确定我该怎么做)
编辑 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/
我正在尝试执行 vagrant up 但一直遇到此错误: ==> default: IOError: [Errno 13] Permission denied: '/usr/local/lib/pyt
我在容器 div 中有一系列动态创建的不同高度的 div。 Varying text... Varying text... Varying text... Varying text.
通过 cygwin 运行 vagrant up 时遇到以下错误。 stderr: /bin/bash: /home/vagrant/.ansible/tmp/ansible-tmp-14872260
今天要向小伙伴们介绍的是一个能够快速地把数据制作成可视化、交互页面的 Python 框架:Streamlit,分分钟让你的数据动起来! 犹记得我在做机器学习和数据分析方面的毕设时,
我是 vagrant 的新手,正在尝试将第二个磁盘添加到我正在用 vagrant 制作的虚拟机中。 我想出了如何在第一次启动虚拟机时连接磁盘,但是当我关闭机器时 然后再次备份(使用 'vagrant
我是一名优秀的程序员,十分优秀!