12345678910111213141516171819202122232425262728293031 |
- //
- // MTBaseModel.m
- //
- // Created by Simon on 2019/3/22.
- // Copyright © 2019 Simon. All rights reserved.
- //
- #import "MTBaseModel.h"
- #import "MTLoginViewController.h"
- @implementation MTBaseModel
- -(void)clarifyResultWithSuccess:(void (^)(void))success failed:(nonnull void (^)(NSInteger))failed{
- if (self.code == 1) {
- if (success) {
- success();
- }
- } else {
- if (self.code == 100) {
- MTLoginViewController *vc = [[MTLoginViewController alloc]init];
- [CURRENT_NAV pushViewController:vc animated:YES];
- }else{
- ShowMessage(self.msg);
- if (failed) {
- failed(self.code);
- }
- }
- }
- }
- @end
|