在此之前,我在网上看了很多关于MVVM的文章,其中MVVM+RAC的模式最多,我想说的是MVVM和RAC没有必然的关系,也不是说MVVM只要结合RAC就会变得更加简单。之所以MVVM会用到RAC,不过是在一些特殊场景下,比如利用RAC的双向绑定特性,更容易实现某些功能,而MVVM的大部分场景是不需要RAC的,用block就能轻而易举的实现大部分场景的功能。
在我看来很多人把本来简单的MVVM复杂化使用了。并没有抓住MVVM的核心。下面我简单明了从一下几点对MVVM进行刨析。
1.MVVM会为Controller瘦身的,如果你用了MVVM,而你的C还是那么胖,对不起,你一定用了假的MVVM。
2.MVVM的核心在于ViewModel,那vm是一个怎样的存在?
它剥离了c中的业务逻辑处理,让c真正的成为一个传输数据枢纽!
它只需要从viewModel里拿到(get)数据,然后把数据放入(set)view里。
get和set是我对MVVM的理解,C get VM生产的数据,set给V V赋值完成后由C展示。
结构图:
上代码:
Model:
#import
NS_ASSUME_NONNULL_BEGIN
@interfaceHomeModel :NSObject
@property (nonatomic, copy) NSString *userName;
@property (nonatomic, copy) NSString *userId;
@end
NS_ASSUME_NONNULL_END
ViewModel:
#import
#import "HomeModel.h"
NS_ASSUME_NONNULL_BEGIN
typedefvoid(^paramBlock)(HomeModel*model);
@interfaceHomeViewModel :NSObject
-(void)getDataWithRequestParam:(NSDictionary*)requestParam paramBlock:(paramBlock)paramBlock;
@end
NS_ASSUME_NONNULL_END
#import "HomeViewModel.h"
@implementation HomeViewModel
-(void)getDataWithRequestParam:(NSDictionary*)requestParam paramBlock:(paramBlock)paramBlock{
//模拟网络请求 传入请求参数requestParam
HomeModel *model = [HomeModel new];
model.userId=@"007";
model.userName=@"zgj";
//这里做个假数据,拿到数据做回调
if(paramBlock) {
paramBlock(model);
}
}
@end
View:
#import
#import "HomeModel.h"
NS_ASSUME_NONNULL_BEGIN
@interfaceHomeTopView :UIView
-(void)setWithFrame:(CGRect)frame viewController:(UIViewController*)vc model:(HomeModel*)model;
@end
NS_ASSUME_NONNULL_END
#import "HomeTopView.h"
@implementation HomeTopView
-(void)setWithFrame:(CGRect)frame viewController:(UIViewController*)vc model:(HomeModel*)model{
UILabel*nameLab = [[UILabelalloc]initWithFrame:CGRectMake(100,100,150,30)];
nameLab.font= [UIFontsystemFontOfSize:20];
nameLab.textColor=[UIColorblueColor];
[selfaddSubview:nameLab];
UILabel *idLab=[[UILabel alloc]initWithFrame:CGRectMake(100, 140, 150, 30)];
idLab.font= [UIFontsystemFontOfSize:15];
idLab.textColor =[UIColor redColor];
[selfaddSubview:idLab];
nameLab.text= [NSStringstringWithFormat:@"姓名:%@",model.userName];
idLab.text= [NSStringstringWithFormat:@"ID:%@",model.userId];
self.frame=frame;
[vc.viewaddSubview:self];
}
@end
Controller:
#import "ViewController.h"
#import "HomeViewModel.h"
#import "HomeTopView.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
//get:获取数据
[[HomeViewModel new] getDataWithRequestParam:@{@"token":@"12345"} paramBlock:^(HomeModel * _Nonnull model) {
//set:赋值
[[HomeTopViewnew]setWithFrame:CGRectMake(0,0,self.view.bounds.size.width,400)viewController:selfmodel:model];
}];
}
@end
最后用一张实践图诠释MVVM的get和set理论:
在整个生命周期里,
M负责数据模型的生产,给VM用
VM负责逻辑处理和数据生产,交给C
C负责数据转运(getVM的数据,set给V)和最后界面的加载展示工作
V负责把C传过来的数据给UI赋值,然后展现在C上。