SYBase_tbVC.h 844 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // SYBase_tbVC.h
  3. // LNManager
  4. //
  5. // Created by EchoShacolee on 2017/4/7.
  6. // Copyright © 2017年 lee. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "NetworkManager.h"
  10. #import <MBProgressHUD.h>
  11. #import "AppDelegate.h"
  12. #import "SelectCell.h"
  13. typedef void(^Block)(NSDictionary * successdic);
  14. @interface SYBase_tbVC : UIViewController
  15. {
  16. NSMutableArray *_dataSource;// 每行的内容
  17. NSMutableArray *_sectionTitles; // 每个分区的标题
  18. NSMutableDictionary *_requsetDic;//请求参数
  19. BlockTypeVo _block;//holderv(点击刷新)点击回调
  20. }
  21. @property(nonatomic,retain)UITableView *tableView;
  22. @property(nonatomic,strong)HolderView * holderV;
  23. -(void)getDataWithDic:(NSMutableDictionary *)mdic method:(NSString *)method block:(Block)block;
  24. - (void)showMsgByAlertVCWithString:(NSString *)str;
  25. @end