// 绑定事件
[[self.loginBtn rac_signalForControlEvents:UIControlEventTouchUpInside] subscribeNext:^(__kindof UIControl * _Nullable x) {
}];
RAC(btn,enabled)=RACObserve(viewModel,isvalid)
//通过观察viewModel中的isvalid可以设置Button的enabled是否可用
// 绑定事件
[[self.loginBtn rac_signalForControlEvents:UIControlEventTouchUpInside] subscribeNext:^(__kindof UIControl * _Nullable x) {
}];
RAC(btn,enabled)=RACObserve(viewModel,isvalid)
//通过观察viewModel中的isvalid可以设置Button的enabled是否可用