gpt4 book ai didi

ios - Objective-C:有哪些设计模式可以将模型与从属性列表中选择的 View 联系起来?

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:35:39 24 4
gpt4 key购买 nike

我正在尝试使用 Objective-C 构建 MVC 应用程序。它应该是一个问卷应用程序。我将所有问题和多项选择答案存储在一个属性列表中,因为我有不同的问卷,我希望能够使用此应用程序加载这些问卷。这个想法是主模型将跟踪它应该读取属性列表的哪一项,并选择相应的 View 和 viewController。

所以示意性地我有以下问题。 enter image description here

RootView 显示开始菜单,用于选择您将能够参加的调查问卷。

RootViewController 是应用委托(delegate)调用的第一个 Controller 。它应该实例化模型并显示 RootView。它还控制 RootView 的按钮。

模型 应该将属性列表的项目包装到合适的数据结构中,并将其提供给需要它的 View Controller 。

SelectedViewController 是一个 Controller ,它是专门为某类问题制作的模板。问题可以是多项选择、开放式问题、3、5 或 7 个选择的李克特量表问题,任何问题。这些 View Controller 将真正获得的模板名称是 ViewController。

SelectedView 是针对问题类型量身定制的 View ,并将获得与所有选定 View Controller 相同的名称格式。

这是我的想法。

  • 我最初的预感是使用委托(delegate)模式,并将模型设置为任何 SelectedViewController 的委托(delegate)。
  • 我也可以使用 RootViewController 的委托(delegate)模式,让他监控是否应该销毁 SelectedViewController(通过委托(delegate)消息)。在那种情况下,我可以在 RootViewController 中为 SelectedViewController 实现 prepareForSegue。
  • 因为它是来自 plist 的问卷,我还可以添加一个 prepare for segue 到每个选定的 View Controller ,但这可能是一个问题,因为至少有 15 种不同的显示方式问题。

根据 to this question,显然还有类似键值观察的东西.所以这也是我可以使用的东西。

我认为有一个明确的方法来处理这个问题,因为 iOS 中的设计模式描述得非常好,所以应该有几个选项(或者只有一个)。目前我倾向于将 RootViewController 设置为 SelectedViewController 的委托(delegate)并让 RootViewController 处理模型。通过这种方式,我扩展了 RootViewController 以同时包含每个 SelectedViewController 应具有的所有通用功能。

但我真的不确定这是否可行,因为我对设计模式的了解有限。我的问题是:在这种特定情况下,正确的选择是什么(例如,通过 .plist 文件选择的 View 和 View Controller )?

最佳答案

不需要特定的模式 - 您可以通过名称处理访问模型对象的实例,即以与处理创建特定 View 和 View Controller 完全相同的方式。

假设您要将 QuizQuestionViewController4MC 及其 QuizQuestionView4MC 连接到它们的模型。假设模型类名为 QuizQuestionModel4MC,并且需要使用从 plist 中的键 @"4MC" 获取的对象对其进行配置。由于您的代码仅在运行时学习模型类的名称,因此您可以使用反射创建一个实例:

NSDictionary *dataFromPlist = ... // Someone passes this to you
NSString *identifier = dataFromPlist[@"identifier"]; // Returns @"4MC"
NSString *ctrlName = [NSString stringWithFormat:@"QuestionViewController%@", identifier];
NSString *modelClassName = [NSString stringWithFormat:@"QuizQuestionModel%@", identifier];
id model = [[NSClassFromString(modelClassName) alloc] init];
// Configure the model with the data from plist
[model setPlistData:dataFromPlist];
// The model is ready to be used - give it to the view controller
MyBaseViewController *ctrl = [storyboard – instantiateViewControllerWithIdentifier:ctrlName];
// Give the view controller its model - now it is ready to be used
[ctrl setModel:model];

注意 View Controller 的类 - MyBaseViewController。这不是您的 Root View Controller ,它是您所有特定 View Controller 的基类。正是这个 View Controller 知道模型,但它不知道模型层次结构中的特定子类。 View Controller 的每个子类都知道其特定的模型子类,因此它可以直接访问模型类的信息,而无需通过选择器或 KVP。

当然,将正确的 View Controller “连接”到正确的模型取决于应用程序的设计者。在上面的示例中,QuizQuestionViewController4MC 需要知道 QuizQuestionModel4MC 的结构,以避免将无法识别的选择器发送到不正确的类。

关于ios - Objective-C:有哪些设计模式可以将模型与从属性列表中选择的 View 联系起来?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22484562/

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