写在前头:这里有个Demo,可以先下载
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:self.cellIdentifier forIndexPath:indexPath];
id model = [self modelsAtIndexPath:indexPath];
cell.model = model;
return cell;
}
还记得这段代码“cell.model = model;”我们曾经都这么写,很方便很高大。
1、MVC
曾经
在讨论苹果对MVC的看法之前,让我们先看看传统的MVC。
在上图的情况下,View是无状态的。一旦Model被改变,Controller就会简单地渲染它。例如:网页完全加载后,一旦你按下链接,就导航到其他地方。
虽然在iOS应用用传统的MVC架构也可以实现,但这并没有多大意义,由于架构问题 ——三个实体是紧耦合的,每个实体和其他两个通信。这大大降低了可重用性——这可不是你希望在你的应用程序看到的。“cell.model = model;”这句类似的代码出了问题,cell中不应该引入model,要实现cell与model的解耦合。出于这个原因,我们甚至不想编写规范的MVC示例。
传统的MVC似乎不适用于现代IOS开发。
苹果的MVC
愿景:
Controller是View和Model之间的中介,这样他们就解耦了。最小的可重用单元是Controller,这对我们来说是个好消息,因为我们必须有一个来放那些不适合放入Model的复杂业务逻辑的地方。
从理论上讲,它看起来很简单,但你觉得有些地方不对,对吧?你甚至听到有人说MVC全称应该改为Massive View Controller(大量的视图控制器)。此外,为View controller减负也成为iOS开发者面临的一个重要话题。
对于MVC
MVC的缺点在于并没有区分业务逻辑和业务展示, 这对单元测试很不友好。而MVP针对以上缺点做了优化, 它将业务逻辑和业务展示也做了一层隔离, 对应的就变成了MVCP. M和V功能不变, 原来的C现在只负责布局(也就可以说VC就是V), 而所有的逻辑全都转移到了P层.
2、MVP
MVP 实现了Cocoa的MVC的愿景
这看起来不正是苹果的MVC吗?是的,它的名字是MVP(Passive View variant,被动视图变体)。等等...这是不是意味着苹果的MVC实际上是MVP?不,不是这样。如果你仔细回忆一下,View是和Controller紧密耦合的,但是MVP的中介Presenter并没有对ViewController的生命周期做任何改变,因此View可以很容易的被模拟出来。在Presenter中根本没有和布局有关的代码,但是它却负责更新View的数据和状态。
来举个栗子---这里有个Demo
以上是这样一个功能实现:通过点击
-
或者+
号调节数据,并且改变的数据会被保存,并且当调节后数据大于7会更换整个列表的数据。1、MVC
先来看看MVC的C
@implementation MVCViewController
- (void)viewDidLoad {
[super viewDidLoad];
[self loadData];
__weak __typeof(self) weakSelf = self;
self.dataSource = [[LMDataSource alloc] initWithIdentifier:reuserId configureBlock:^(MVPTableViewCell *cell, Model *model, NSIndexPath *indexPath) {
__strong __typeof(weakSelf) strongSelf = weakSelf;
cell.delegate = strongSelf;
cell.indexPath = indexPath;
// cell.model = model;
cell.nameLabel.text = model.name;
cell.numLabel.text = model.num;
} selectBlock:^(NSIndexPath *indexPath) {
NSLog(@"点击了%ld行cell", (long)indexPath.row);
}];
[self.dataSource addDataArray:self.dataArray];
self.view.backgroundColor = [UIColor whiteColor];
[self.view addSubview:self.tableView];
self.tableView.dataSource = self.dataSource;
}
#pragma mark - lazy
- (NSMutableArray *)dataArray{
if (!_dataArray) {
_dataArray = [NSMutableArray arrayWithCapacity:10];
}
return _dataArray;
}
- (UITableView *)tableView{
if (!_tableView) {
_tableView = [[UITableView alloc] initWithFrame:self.view.bounds style:UITableViewStylePlain];
_tableView.backgroundColor = [UIColor whiteColor];
[_tableView registerClass:[MVPTableViewCell class] forCellReuseIdentifier:reuserId];
}
return _tableView;
}
C中数据加载
#pragma mark 加载数据
- (void)loadData{
NSArray *temArray =
@[
@{@"name":@"CadsC",@"imageUrl":@"http://CC",@"num":@"9"},
@{@"name":@"Jadsfes",@"imageUrl":@"http://James",@"num":@"9"},
@{@"name":@"Gadsfin",@"imageUrl":@"http://Gavin",@"num":@"9"},
@{@"name":@"adci",@"imageUrl":@"http://Cooci",@"num":@"9"},
@{@"name":@"adn",@"imageUrl":@"http://Dean ",@"num":@"9"},
@{@"name":@"sd",@"imageUrl":@"http://CC",@"num":@"9"},
@{@"name":@"Jadfes",@"imageUrl":@"http://James",@"num":@"9"},
@{@"name":@"adin",@"imageUrl":@"http://Gavin",@"num":@"9"},
@{@"name":@"adfci",@"imageUrl":@"http://Cooci",@"num":@"9"},
@{@"name":@"CadsC",@"imageUrl":@"http://CC",@"num":@"9"},
@{@"name":@"Jadsfes",@"imageUrl":@"http://James",@"num":@"9"},
@{@"name":@"Gadsfin",@"imageUrl":@"http://Gavin",@"num":@"9"},
@{@"name":@"adci",@"imageUrl":@"http://Cooci",@"num":@"9"},
@{@"name":@"CadsC",@"imageUrl":@"http://CC",@"num":@"9"},
@{@"name":@"Jadsfes",@"imageUrl":@"http://James",@"num":@"9"},
@{@"name":@"Gadsfin",@"imageUrl":@"http://Gavin",@"num":@"9"},
@{@"name":@"adci",@"imageUrl":@"http://Cooci",@"num":@"9"},
@{@"name":@"Dsdfn",@"imageUrl":@"http://Dean ",@"num":@"9"}];
for (int i = 0; i<temArray.count; i++) {
Model *m = [Model modelWithDictionary:temArray[i]];
[self.dataArray addObject:m];
}
}
关于cell中按钮的事件代理
#pragma mark - PresentDelegate
- (void)didClickAddBtnWithNum:(NSString *)num indexPath:(NSIndexPath *)indexPath{
for (int i = 0; i<self.dataArray.count; i++) {
// 查数据 ---> 钱
if (i == indexPath.row) {// 商品ID 容错
Model *m = self.dataArray[indexPath.row];
m.num = num;
break;
}
}
if ([num intValue] > 6) {
NSArray *temArray =
@[
@{@"name":@"CfC",@"imageUrl":@"http://CC",@"num":@"9"},
@{@"name":@"sadfa",@"imageUrl":@"http://Gavin",@"num":@"9"},
@{@"name":@"sderfx",@"imageUrl":@"http://Cooci",@"num":@"9"}];
[self.dataArray removeAllObjects];
for (int i = 0; i<temArray.count; i++) {
Model *m = [Model modelWithDictionary:temArray[i]];
[self.dataArray addObject:m];
}
MVPTableViewCell* cell = [self.tableView cellForRowAtIndexPath:indexPath];
if (cell.delegate && [cell.delegate respondsToSelector:@selector(reloadDataForUI)]) {
[cell.delegate reloadDataForUI];
}
}
}
- (void)reloadDataForUI{
[self.dataSource addDataArray:self.dataArray];
[self.tableView reloadData];
}
分析一下:要进化为MVP,数据加载可以提取到Present里,V(cell)中的代理应该提取到Present中
2、MVP
P (Present)
@implementation Present
- (instancetype)init{
if (self = [super init]) {
[self loadData];
}
return self;
}
- (void)loadData{
NSArray *temArray =
@[
@{@"name":@"CadsC",@"imageUrl":@"http://CC",@"num":@"9"},
@{@"name":@"Jadsfes",@"imageUrl":@"http://James",@"num":@"9"},
@{@"name":@"Gadsfin",@"imageUrl":@"http://Gavin",@"num":@"9"},
@{@"name":@"adci",@"imageUrl":@"http://Cooci",@"num":@"9"},
@{@"name":@"adn",@"imageUrl":@"http://Dean ",@"num":@"9"},
@{@"name":@"sd",@"imageUrl":@"http://CC",@"num":@"9"},
@{@"name":@"Jadfes",@"imageUrl":@"http://James",@"num":@"9"},
@{@"name":@"adin",@"imageUrl":@"http://Gavin",@"num":@"9"},
@{@"name":@"adfci",@"imageUrl":@"http://Cooci",@"num":@"9"},
@{@"name":@"CadsC",@"imageUrl":@"http://CC",@"num":@"9"},
@{@"name":@"Jadsfes",@"imageUrl":@"http://James",@"num":@"9"},
@{@"name":@"Gadsfin",@"imageUrl":@"http://Gavin",@"num":@"9"},
@{@"name":@"adci",@"imageUrl":@"http://Cooci",@"num":@"9"},
@{@"name":@"CadsC",@"imageUrl":@"http://CC",@"num":@"9"},
@{@"name":@"Jadsfes",@"imageUrl":@"http://James",@"num":@"9"},
@{@"name":@"Gadsfin",@"imageUrl":@"http://Gavin",@"num":@"9"},
@{@"name":@"adci",@"imageUrl":@"http://Cooci",@"num":@"9"},
@{@"name":@"Dsdfn",@"imageUrl":@"http://Dean ",@"num":@"9"}];
for (int i = 0; i<temArray.count; i++) {
Model *m = [Model modelWithDictionary:temArray[i]];
[self.dataArray addObject:m];
}
}
#pragma mark - lazy
- (NSMutableArray *)dataArray{
if (!_dataArray) {
_dataArray = [NSMutableArray arrayWithCapacity:10];
}
return _dataArray;
}
#pragma mark - PresentDelegate
- (void)didClickAddBtnWithNum:(NSString *)num indexPath:(NSIndexPath *)indexPath{
for (int i = 0; i<self.dataArray.count; i++) {
// 查数据 ---> 钱
if (i == indexPath.row) {// 商品ID 容错
Model *m = self.dataArray[indexPath.row];
m.num = num;
break;
}
}
if ([num intValue] > 6) {
NSArray *temArray =
@[
@{@"name":@"CfC",@"imageUrl":@"http://CC",@"num":@"9"},
@{@"name":@"sadfa",@"imageUrl":@"http://Gavin",@"num":@"9"},
@{@"name":@"sderfx",@"imageUrl":@"http://Cooci",@"num":@"9"}];
[self.dataArray removeAllObjects];
for (int i = 0; i<temArray.count; i++) {
Model *m = [Model modelWithDictionary:temArray[i]];
[self.dataArray addObject:m];
}
if (self.delegate && [self.delegate respondsToSelector:@selector(reloadDataForUI)]) {
[self.delegate reloadDataForUI];
}
}
}
缩减后的V(VC)怎么样呢
@implementation MVPViewController
- (void)viewDidLoad {
[super viewDidLoad];
self.pt = [[Present alloc] init];
__weak typeof(self) weakSelf = self;
self.dataSource = [[LMDataSource alloc] initWithIdentifier:reuserId configureBlock:^(MVPTableViewCell *cell, Model *model, NSIndexPath *indexPath) {
// 函数式编程
// RAC 编程思想之集大成者
cell.nameLabel.text = model.name;
cell.numLabel.text = model.num;
cell.indexPath = indexPath;
cell.delegate = weakSelf.pt;
} selectBlock:^(NSIndexPath *indexPath) {
NSLog(@"点击了%ld行cell", (long)indexPath.row);
}];
[self.dataSource addDataArray:self.pt.dataArray];
self.view.backgroundColor = [UIColor whiteColor];
[self.view addSubview:self.tableView];
self.tableView.dataSource = self.dataSource;
self.pt.delegate = self;
}
- (UITableView *)tableView{
if (!_tableView) {
_tableView = [[UITableView alloc] initWithFrame:self.view.bounds style:UITableViewStylePlain];
_tableView.backgroundColor = [UIColor whiteColor];
[_tableView registerClass:[MVPTableViewCell class] forCellReuseIdentifier:reuserId];
}
return _tableView;
}
#pragma mark - PresentDelegate
- (void)reloadDataForUI{
[self.dataSource addDataArray:self.pt.dataArray];
[self.tableView reloadData];
}
代码瞬间减少了一半,就算以后增加逻辑代码,也只是会增加Present。如果觉得有用可以下载Demo了解更多。如果对LMDataSource
这个类的功能不太了解,这里是使用了代理模式,可以看看设计模式--代理模式(iOS)
MVP大概就是这个样子了, 相对于MVC, 它其实只做了一件事情, 即分割业务展示和业务逻辑。 展示和逻辑分开后, 只要我们能保证V在收到P的数据更新通知后能正常刷新页面, 那么整个业务就没有问题。因为V收到的通知其实都是来自于P层的数据获取/更新操作, 所以我们只要保证P层的这些操作都是正常的就可以了。即我们只用测试P层的逻辑, 不必关心V层的情况。
当然这个栗子比较简单,本文更新界面的方法就一个reloadDataForUI
,如果到时候业务复杂、逻辑复杂,更新界面的方法有多个(弹框、菊花等等的),可以通过多个代理方法实现。这样当然可以,但有没有更简单直接明了的方法呢?当然有,那就是MVVM
产生的原因,详情可以查看我的iOS 从MVP到MVVM。
写在最后:
希望这篇文章对您有帮助。当然如果您发现有可以优化的地方,希望您能慷慨的提出来。最后祝您工作愉快!