MTBaseViewModel.h 575 B

12345678910111213141516171819202122
  1. //
  2. // MTBaseViewModel.h
  3. //
  4. // Created by Simon on 2019/3/22.
  5. // Copyright © 2019 Simon. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. #import "MTHttpTool.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface MTBaseViewModel : NSObject
  11. @property (nonatomic, strong) RACSubject *refreshUISubject; /**< 刷新数据 */
  12. @property (nonatomic, strong) RACSubject *errorSubject; /**< 请求错误 */
  13. // 成功
  14. typedef void (^ViewModelSuccessBlock)(id data, NSString *successInfo);
  15. // 失败
  16. typedef void (^ViewModelFailureBlock)(NSString *errorInfo);
  17. @end
  18. NS_ASSUME_NONNULL_END