SYBase_tbVC.h 794 B

12345678910111213141516171819202122232425
  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. typedef void(^Block)(NSDictionary * successdic);
  10. @interface SYBase_tbVC : UIViewController
  11. @property (nonatomic, strong)NSMutableArray *dataSource;// 每行的内容
  12. @property (nonatomic, strong)NSMutableArray *sectionTitles; // 每个分区的标题
  13. @property (nonatomic, strong)NSMutableDictionary *requsetDic;//请求参数
  14. @property(nonatomic,retain)UITableView *tableView;
  15. @property(nonatomic,strong)HolderView * holderV;
  16. @property(nonatomic,copy)BlockTypeVo holdervBlock;
  17. -(void)getDataWithDic:(NSMutableDictionary *)mdic method:(NSString *)method block:(Block)block;
  18. - (void)showMsgByAlertVCWithString:(NSString *)str;
  19. @end