浅谈MVVM设计模式
如果你已经开发一段时间的iOS应用,你一定听说过Model-View-Controller, 即MVC。MVC是构建iOS app的标准模式。然而,最近我已经越来越厌倦MVC的一些缺点。在本文,我将重温一下MVC是什么,详述它的缺点,并且告诉你一个新的方式来架构你的app:Model-View-ViewModel。
我们看到的是一个典型的 MVC 设置。Model 呈现数据,View 呈现用户界面,而 View Controller 调节它两者之间的交互。Cool!
稍微考虑一下,虽然 View 和 View Controller 是技术上不同的组件,但它们几乎总是手牵手在一起,成对的。你什么时候看到一个 View 能够与不同 View Controller 配对?或者反过来?所以,为什么不正规化它们的连接呢?
这更准确地描述了你可能已经编写的 MVC 代码。但它并没有做太多事情来解决 iOS 应用中日益增长的重量级视图控制器的问题。在典型的 MVC 应用里,许多逻辑被放在 View Controller 里。它们中的一些确实属于 View Controller,但更多的是所谓的“表示逻辑(presentation logic)”,以 MVVM 属术语来说,就是那些将 Model 数据转换为 View 可以呈现的东西的事情,例如将一个 NSDate
转换为一个格式化过的 NSString
。
我们的图解里缺少某些东西,那些使我们可以把所有表示逻辑放进去的东西。我们打算将其称为 “View Model” —— 它位于 View/Controller 与 Model 之间:
看起好多了!这个图解准确地描述了什么是 MVVM:一个 MVC 的增强版,我们正式连接了视图和控制器,并将表示逻辑从 Controller 移出放到一个新的对象里,即 View Model。MVVM 听起来很复杂,但它本质上就是一个精心优化的 MVC 架构,而 MVC 你早已熟悉。
现在我们知道了什么是 MVVM,但为什么我们会想要去使用它呢?在 iOS 上使用 MVVM 的动机,对我来说,无论如何,就是它能减少 View Controller 的复杂性并使得表示逻辑更易于测试。通过一些例子,我们将看到它如何达到这些目标。
此处有三个重点是我希望你看完本文能带走的:
- MVVM 可以兼容你当下使用的 MVC 架构。
- MVVM 增加你的应用的可测试性。
- MVVM 配合一个绑定机制效果最好。
如我们之前所见,MVVM 基本上就是 MVC 的改进版,所以很容易就能看到它如何被整合到现有使用典型 MVC 架构的应用中。让我们看一个简单的 Person
Model 以及相应的 View Controller:
1 @interface Person : NSObject 2 3 - (instancetype)initwithSalutation:(NSString *)salutation firstName:(NSString *)firstName lastName:(NSString *)lastName birthdate:(NSDate *)birthdate; 4 5 @property (nonatomic, readonly) NSString *salutation; 6 @property (nonatomic, readonly) NSString *firstName; 7 @property (nonatomic, readonly) NSString *lastName; 8 @property (nonatomic, readonly) NSDate *birthdate; 9 10 @end
Cool!现在我们假设我们有一个 PersonViewController
,在 viewDidLoad
里,只需要基于它的 model
属性设置一些 Label 即可。
1 - (void)viewDidLoad { 2 [super viewDidLoad]; 3 4 if (self.model.salutation.length > 0) { 5 self.nameLabel.text = [NSString stringWithFormat:@"%@ %@ %@", self.model.salutation, self.model.firstName, self.model.lastName]; 6 } else { 7 self.nameLabel.text = [NSString stringWithFormat:@"%@ %@", self.model.firstName, self.model.lastName]; 8 } 9 10 NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; 11 [dateFormatter setDateFormat:@"EEEE MMMM d, yyyy"]; 12 self.birthdateLabel.text = [dateFormatter stringFromDate:model.birthdate]; 13 }
这全都直截了当,标准的 MVC。现在来看看我们如何用一个 View Model 来增强它。
1 @interface PersonViewModel : NSObject 2 3 - (instancetype)initWithPerson:(Person *)person; 4 5 @property (nonatomic, readonly) Person *person; 6 7 @property (nonatomic, readonly) NSString *nameText; 8 @property (nonatomic, readonly) NSString *birthdateText; 9 10 @end
我们的 View Model 的实现大概如下:
1 @implementation PersonViewModel 2 3 - (instancetype)initWithPerson:(Person *)person { 4 self = [super init]; 5 if (!self) return nil; 6 7 _person = person; 8 if (person.salutation.length > 0) { 9 _nameText = [NSString stringWithFormat:@"%@ %@ %@", self.person.salutation, self.person.firstName, self.person.lastName]; 10 } else { 11 _nameText = [NSString stringWithFormat:@"%@ %@", self.person.firstName, self.person.lastName]; 12 } 13 14 NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; 15 [dateFormatter setDateFormat:@"EEEE MMMM d, yyyy"]; 16 _birthdateText = [dateFormatter stringFromDate:person.birthdate]; 17 18 return self; 19 } 20 21 @end
Cool!我们已经将 viewDidLoad
中的表示逻辑放入我们的 View Model 里了。此时,我们新的 viewDidLoad
就会非常轻量:
1 - (void)viewDidLoad { 2 [super viewDidLoad]; 3 4 self.nameLabel.text = self.viewModel.nameText; 5 self.birthdateLabel.text = self.viewModel.birthdateText; 6 }
所以,如你所见,并没有对我们的 MVC 架构做太多改变。还是同样的代码,只不过移动了位置。它与 MVC 兼容,带来更轻量的 View Controllers。
可测试,嗯?是怎样?好吧,View Controller 是出了名的难以测试,因为它们做了太多事情。在 MVVM 里,我们试着尽可能多的将代码移入 View Model 里。测试 View Controller 就变得容易多了,因为它们不再做一大堆事情,并且 View Model 也非常易于测试。让我们来看看:
1 SpecBegin(Person) 2 NSString *salutation = @"Dr."; 3 NSString *firstName = @"first"; 4 NSString *lastName = @"last"; 5 NSDate *birthdate = [NSDate dateWithTimeIntervalSince1970:0]; 6 7 it (@"should use the salutation available. ", ^{ 8 Person *person = [[Person alloc] initWithSalutation:salutation firstName:firstName lastName:lastName birthdate:birthdate]; 9 PersonViewModel *viewModel = [[PersonViewModel alloc] initWithPerson:person]; 10 expect(viewModel.nameText).to.equal(@"Dr. first last"); 11 }); 12 13 it (@"should not use an unavailable salutation. ", ^{ 14 Person *person = [[Person alloc] initWithSalutation:nil firstName:firstName lastName:lastName birthdate:birthdate]; 15 PersonViewModel *viewModel = [[PersonViewModel alloc] initWithPerson:person]; 16 expect(viewModel.nameText).to.equal(@"first last"); 17 }); 18 19 it (@"should use the correct date format. ", ^{ 20 Person *person = [[Person alloc] initWithSalutation:nil firstName:firstName lastName:lastName birthdate:birthdate]; 21 PersonViewModel *viewModel = [[PersonViewModel alloc] initWithPerson:person]; 22 expect(viewModel.birthdateText).to.equal(@"Thursday January 1, 1970"); 23 }); 24 SpecEnd
如果我们没有将这个逻辑移入 View Model,我们将不得不实例化一个完整的 View Controller 以及伴随的 View,然后去比较我们 View 中 Lable 的值。这样做不只是会变成一个麻烦的间接层,而且它只代表了一个十分脆弱的测试。现在,我们可以按意愿自由地修改视图层级而不必担心破坏我们的单元测试。使用 MVVM 带来的对于测试的好处非常清晰,甚至从这个简单的例子来看也可见一斑,而在有更复杂的表示逻辑的情况下,这个好处会更加明显。
注意到在这个简单的例子中, Model 是不可变的,所以我们可以只在初始化的时候指定我们 View Model 的属性。对于可变 Model,我们还需要使用一些绑定机制,这样 View Model 就能在背后的 Model 改变时更新自身的属性。此外,一旦 View Model 上的 Model 发生改变,那 View 的属性也需要更新。Model 的改变应该级联向下通过 View Model 进入 View。
在 OS X 上,我们可以使用 Cocoa 绑定,但在 iOS 上我们并没有这样好的配置可用。我们想到了 KVO(Key-Value Observation),而且它确实做了很伟大的工作。然而,对于一个简单的绑定都需要很大的样板代码,更不用说有许多属性需要绑定了。作为替代,我个人喜欢使用 ReactiveCocoa,但 MVVM 并未强制我们使用 ReactiveCocoa。MVVM 是一个伟大的典范,它自身独立,只是在有一个良好的绑定框架时做得更好。
我们覆盖了不少内容:从普通的 MVC 派生出 MVVM,看它们是如何相兼容的范式,从一个可测试的例子观察 MVVM,并看到 MVVM 在有一个配对的绑定机制时工作得更好。如果你有兴趣学习更多关于 MVVM 的知识,你可以看看这篇博客,它用更多细节解释了 MVVM 的好处,或者这一篇关于我们如何在最近的项目里使用 MVVM 获得巨大的成功的文章。我同样还有一个经过完整测试,基于 MVVM 的应用,叫做 C-41 ,它是开源的。去看看吧,如果你有任何疑问,请告诉我。
原文链接:http://objccn.io/issue-13-1/