1234567891011121314151617181920212223242526 |
- //
- // MTBaseViewModel.m
- //
- // Created by Simon on 2019/3/22.
- // Copyright © 2019 Simon. All rights reserved.
- //
- #import "MTBaseViewModel.h"
- @implementation MTBaseViewModel
- - (RACSubject *)refreshUISubject {
- if (!_refreshUISubject) {
- _refreshUISubject = [RACSubject subject];
- }
- return _refreshUISubject;
- }
- - (RACSubject *)errorSubject {
- if (!_errorSubject) {
- _errorSubject = [RACSubject subject];
- }
- return _errorSubject;
- }
- @end
|