MTBaseModel.m 716 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // MTBaseModel.m
  3. //
  4. // Created by Simon on 2019/3/22.
  5. // Copyright © 2019 Simon. All rights reserved.
  6. //
  7. #import "MTBaseModel.h"
  8. #import "MTLoginViewController.h"
  9. @implementation MTBaseModel
  10. -(void)clarifyResultWithSuccess:(void (^)(void))success failed:(nonnull void (^)(NSInteger))failed{
  11. if (self.code == 1) {
  12. if (success) {
  13. success();
  14. }
  15. } else {
  16. if (self.code == 100) {
  17. MTLoginViewController *vc = [[MTLoginViewController alloc]init];
  18. [CURRENT_NAV pushViewController:vc animated:YES];
  19. }else{
  20. ShowMessage(self.msg);
  21. if (failed) {
  22. failed(self.code);
  23. }
  24. }
  25. }
  26. }
  27. @end