BaseVC.h 595 B

123456789101112131415161718192021
  1. //
  2. // BaseVC.h
  3. // LNManager
  4. //
  5. // Created by EchoShacolee on 2017/4/6.
  6. // Copyright © 2017年 lee. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef void(^Block)(NSDictionary * successDic);
  10. @interface BaseVC : UIViewController
  11. @property (nonatomic,retain)NSMutableDictionary * dataSource;
  12. - (void)showMsgByAlertVCWithString:(NSString *)str;//弹出框提示(alertVC)
  13. //这个只有successdic正儿八经的时候才会返回,直接用就是了,异常错误都处理了
  14. -(void)getDataWithDic:(NSMutableDictionary *)mdic method:(NSString *)method block:(Block)block;
  15. @end