(IOS)关于MVVM见解与实践
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了(IOS)关于MVVM见解与实践相关的知识,希望对你有一定的参考价值。
参考技术A 在我看来很多人把本来简单的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展示。
#import
NS_ASSUME_NONNULL_BEGIN
@interfaceHomeModel :NSObject
@property (nonatomic, copy) NSString *userName;
@property (nonatomic, copy) NSString *userId;
@end
NS_ASSUME_NONNULL_END
#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
#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
#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
在整个生命周期里,
M负责数据模型的生产,给VM用
VM负责逻辑处理和数据生产,交给C
C负责数据转运(getVM的数据,set给V)和最后界面的加载展示工作
V负责把C传过来的数据给UI赋值,然后展现在C上。
以上是关于(IOS)关于MVVM见解与实践的主要内容,如果未能解决你的问题,请参考以下文章