OStack程序员社区-中国程序员成长平台

标题: ios - Objective-C:有哪些设计模式可以将模型与从属性列表中选择的 View 连接起来? [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 20:35
标题: ios - Objective-C:有哪些设计模式可以将模型与从属性列表中选择的 View 连接起来?

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

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

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

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

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

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

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

这是我的想法。

根据 to this question,显然还有类似 Key-Value Observing 的东西。 .所以这也是我可以使用的东西。

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

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



Best Answer-推荐答案


不需要特定的模式 - 您可以处理通过名称访问模型对象的实例,即以与创建特定 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/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4