OC的MVVM的数据双向绑定改造

目标

OC改造为MVVM设计模式,并且实现VM与View和Model的数据双向绑定。使用ReactiveObjC来进行改造。想进一步了解ReactiveObjC可以参考:
https://blog.devtang.com/2014/02/11/reactivecocoa-introduction/

https://cloud.tencent.com/developer/article/1017790

//www.greatytc.com/p/87ef6720a096

项目结构

本次可能我会淡化Model,而是直接在VM上定义了Model相关。主要关注VM和View的数据双向绑定。
功能是,登录界面,有一个username TF,一个password TF,一个登录按钮:
ReactiveLogin-UIViewController

@interface ReactiveLogin ()
<UITextFieldDelegate>
{
    
}

@property(nonatomic) UIImageView *headImgV;
@property(nonatomic) UITextField *usernameTf;
@property(nonatomic) UITextField *pwdTf;
@property(nonatomic) UIButton *loginBtn;

@property(nonatomic) UserVM *userVM;
@end

@implementation ReactiveLogin

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    [self setNavWithTitle:@"Login" leftImage:@"arrow" leftTitle:nil leftAction:nil rightImage:nil rightTitle:nil rightAction:nil];
    [self setupUI];
    [self bindVM];
}

- (void)setupUI{
    [self.view addSubview:self.headImgV];
    [self.view addSubview:self.usernameTf];
    [self.view addSubview:self.pwdTf];
    [self.view addSubview:self.loginBtn];
    
    [self.headImgV mas_makeConstraints:^(MASConstraintMaker *make) {
        make.top.mas_equalTo(100);
        make.centerX.mas_equalTo(0);
        make.width.height.mas_equalTo(80);
    }];
    [self.usernameTf mas_makeConstraints:^(MASConstraintMaker *make) {
        make.top.equalTo(self.headImgV.mas_bottom).mas_offset(14);
        make.centerX.mas_equalTo(0);
        make.width.mas_equalTo(200);
        make.height.mas_equalTo(44);
    }];
    
    [self.pwdTf mas_makeConstraints:^(MASConstraintMaker *make) {
        make.top.equalTo(self.usernameTf.mas_bottom).mas_offset(10);
        make.centerX.mas_equalTo(0);
        make.width.height.equalTo(self.usernameTf);
    }];
    [self.loginBtn mas_makeConstraints:^(MASConstraintMaker *make) {
        make.top.equalTo(self.pwdTf.mas_bottom).mas_offset(14);
        make.centerX.mas_equalTo(0);
        make.width.height.equalTo(self.usernameTf);
    }];
}

- (void)bindVM{
    self.userVM = [[UserVM alloc] init];
    
    @weakify(self)
    [[self rac_signalForSelector:@selector(textFieldShouldReturn:) fromProtocol:@protocol(UITextFieldDelegate)] subscribeNext:^(RACTuple * _Nullable x) {
        NSLog(@"%@",x);
        UITextField *tf = (UITextField *)x[0];
        [tf resignFirstResponder];
    }];
    
    RAC(self.userVM,username) = self.usernameTf.rac_textSignal;
    RAC(self.userVM,pwd) = self.pwdTf.rac_textSignal;
    
    
    [[RACSignal combineLatest:@[self.usernameTf.rac_textSignal, self.pwdTf.rac_textSignal] reduce:^id _Nonnull(NSString *username, NSString *password){
        return @(username.length && password.length);
    }] subscribeNext:^(id  _Nullable x) {
        NSLog(@"combineLatest>>>%@ %@",x,[NSThread currentThread]);
        BOOL enable = [x boolValue];
        self.loginBtn.enabled = enable;
        if(enable){
            [self.loginBtn setBackgroundColor:[UIColor greenColor]];
        }else{
            [self.loginBtn setBackgroundColor:[UIColor grayColor]];
        }
    }];
    
    [[self.loginBtn rac_signalForControlEvents:UIControlEventTouchUpInside] subscribeNext:^(__kindof UIControl * _Nullable x) {
        [self.userVM.loginCommand execute:nil];
    }];
    [self.userVM.loginCommand.executing subscribeNext:^(NSNumber * _Nullable x) {
        BOOL ret = [x boolValue];
        ret?[PublicFunction showNoHiddenLoading:@""]:[PublicFunction hiddenHUD];
    }];
    
    [self.userVM.loginCommand.executionSignals subscribeNext:^(RACSignal  *x) {
        
        [x subscribeNext:^(id  _Nullable x) {
            NSLog(@"login succ>>>%@",x);
        }];
        [x subscribeCompleted:^{
            NSLog(@"login completed");
        }];
        [x subscribeError:^(NSError * _Nullable error) {
            NSLog(@"login errors>>>%@",x);
        }];
        
//        [x subscribeNext:^(id  _Nullable x) {
//            NSLog(@"login succ>>>%@",x);
//        } completed:^{
//            NSLog(@"login completed");
//        }];
        
    }];
    [self.userVM.loginCommand.errors subscribeNext:^(NSError * _Nullable x) {
        NSLog(@"errors>>>%@",x);
    }];
//    [self.userVM.loginCommand.executionSignals.switchToLatest subscribeNext:^(id  _Nullable x) {
//        NSLog(@"login succ>>>%@",x);
//    } error:^(NSError * _Nullable error) {
//        NSLog(@"login error>>>%@",error);
//    } completed:^{
//        NSLog(@"login completed");
//    }];
//    [self.userVM.loginCommand.executionSignals.switchToLatest subscribeError:^(NSError * _Nullable error) {
//        NSLog(@"login error>>>%@",error);
//    }];
    
    [RACObserve(self.userVM, headUrl) subscribeNext:^(id  _Nullable x) {
        @strongify(self)
//        self.headImgV.image = [UIImage imageNamed:x];
        NSLog(@"headUrl>>>%@",x);
        self.headImgV.backgroundColor = [UIColor redColor];
        if([x isEqualToString:@"blue"]){
            self.headImgV.backgroundColor = [UIColor blueColor];
        }
        
    }];
}

#pragma -mark getting or setting

- (UIImageView *)headImgV{
    if(!_headImgV){
        _headImgV = [[UIImageView alloc] init];
        _headImgV.backgroundColor = [UIColor redColor];
    }
    return _headImgV;
}

- (UITextField *)usernameTf{
    if(!_usernameTf){
        _usernameTf = [[UITextField alloc] init];
        _usernameTf.layer.borderWidth = 1;
        _usernameTf.delegate = self;
    }
    return _usernameTf;
}

- (UITextField *)pwdTf{
    if(!_pwdTf){
        _pwdTf = [[UITextField alloc] init];
        _pwdTf.layer.borderWidth = 1;
        _pwdTf.delegate = self;
    }
    return _pwdTf;
}

- (UIButton *)loginBtn{
    if(!_loginBtn){
        _loginBtn = [UIButton buttonWithType:UIButtonTypeCustom];
        [_loginBtn setBackgroundColor:[UIColor greenColor]];
        [_loginBtn setTitle:@"login" forState:UIControlStateNormal];
    }
    return _loginBtn;
}

UserVM-ViewModel

@interface UserVM : NSObject

@property(nonatomic) NSString *username;
@property(nonatomic) NSString *pwd;
@property(nonatomic) NSString *headUrl;
@property(nonatomic) RACCommand *loginCommand;
@end

@interface UserVM()
{
    BOOL _result;
}
@property(nonatomic) RACSubject *loginSignal;
@end

@implementation UserVM

- (instancetype)init{
    if(self = [super init]){
        [self initParams];
    }
    return self;
}

- (void)initParams{
    self.headUrl = @"red";
//    self.loginSignal = [[RACSubject alloc] init];
//    self.loginCommand = [[RACCommand alloc] initWithSignalBlock:^RACSignal * _Nonnull(id  _Nullable input) {
//
//        [self loginWithUsername:self.username pwd:self.pwd callback:^(BOOL ret) {
//            if(ret){
//                [self.loginSignal sendNext:@"YES"];
//            }else{
//                [self.loginSignal sendError:nil];
//            }
//            [self.loginSignal sendCompleted];
//        }];
//        return self.loginSignal;
//    }];
    
    self.loginCommand = [[RACCommand alloc] initWithSignalBlock:^RACSignal * _Nonnull(id  _Nullable input) {
        NSLog(@"in RACCommand block");
        return [RACSignal createSignal:^RACDisposable * _Nullable(id<RACSubscriber>  _Nonnull subscriber) {
            [self loginWithUsername:self.username pwd:self.pwd callback:^(BOOL ret) {
                if(ret){
                    [subscriber sendNext:@"YES"];
                }else{
                    [subscriber sendError:nil];
                }
                [subscriber sendCompleted];
            }];
            return nil;
        }];
    }];
}

//login
- (void)loginWithUsername:(NSString *)username pwd:(NSString *)pwd callback:(void(^)(BOOL ret))callback{
    dispatch_async(dispatch_get_global_queue(0, 0), ^{
        NSLog(@"start login>>%@,%@",username,pwd);
        [NSThread sleepForTimeInterval:2];
        
        dispatch_async(dispatch_get_main_queue(), ^{
            _headUrl = @"blue";
            _result = !_result;
            if(callback) callback(_result);
        });
    });
}
@end

TF:
usernameTf的值输入直接同步到self.userVM的username
RAC(self.userVM,username) = self.usernameTf.rac_textSignal;
RAC(self.userVM,pwd) = self.pwdTf.rac_textSignal;

Btn:
通过RACCommand来与btn建立关系,点击btn后的处理逻辑再VM内,然后VM把处理的结果反馈给VC
关联btn点击事件:
[[self.loginBtn rac_signalForControlEvents:UIControlEventTouchUpInside] subscribeNext:^(__kindof UIControl * _Nullable x) {
[self.userVM.loginCommand execute:nil];
}];
事件处理后的反馈:
[self.userVM.loginCommand.executionSignals subscribeNext:^(RACSignal *x) {

    [x subscribeNext:^(id  _Nullable x) {
        NSLog(@"login succ>>>%@",x);
    }];
    [x subscribeCompleted:^{
        NSLog(@"login completed");
    }];
    [x subscribeError:^(NSError * _Nullable error) {
        NSLog(@"login errors>>>%@",x);
    }];
}];

头像控件的关联:
VM内调用登录接口后,会获取到用户头像url,如何做到在VM内赋值了url后,VC内的头像控件就直接刷新呢:

[RACObserve(self.userVM, headUrl) subscribeNext:^(id  _Nullable x) {
        @strongify(self)
        NSLog(@"headUrl>>>%@",x);
        self.headImgV.backgroundColor = [UIColor redColor];
        if([x isEqualToString:@"blue"]){
            self.headImgV.backgroundColor = [UIColor blueColor];
        }
        
    }];

这样改造后,你会发现,数据处理与UI完全解耦了。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,290评论 6 491
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,107评论 2 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 156,872评论 0 347
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,415评论 1 283
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,453评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,784评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,927评论 3 406
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,691评论 0 266
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,137评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,472评论 2 326
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,622评论 1 340
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,289评论 4 329
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,887评论 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,741评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,977评论 1 265
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,316评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,490评论 2 348

推荐阅读更多精彩内容