12345678910111213141516171819202122 |
- //
- // MTBaseViewModel.h
- //
- // Created by Simon on 2019/3/22.
- // Copyright © 2019 Simon. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "MTHttpTool.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface MTBaseViewModel : NSObject
- @property (nonatomic, strong) RACSubject *refreshUISubject; /**< 刷新数据 */
- @property (nonatomic, strong) RACSubject *errorSubject; /**< 请求错误 */
- // 成功
- typedef void (^ViewModelSuccessBlock)(id data, NSString *successInfo);
- // 失败
- typedef void (^ViewModelFailureBlock)(NSString *errorInfo);
- @end
- NS_ASSUME_NONNULL_END
|