SYBase_tbVC.h 727 B

12345678910111213141516171819202122232425262728
  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. {
  12. NSMutableArray *_dataSource;// 每行的内容
  13. NSMutableArray *_sectionTitles; // 每个分区的标题
  14. NSMutableDictionary *_requsetDic;//请求参数
  15. }
  16. @property(nonatomic,retain)UITableView *tableView;
  17. @property(nonatomic,strong)HolderView * holderV;
  18. @property(nonatomic,copy)BlockTypeVo holdervBlock;
  19. -(void)getDataWithDic:(NSMutableDictionary *)mdic method:(NSString *)method block:(Block)block;
  20. - (void)showMsgByAlertVCWithString:(NSString *)str;
  21. @end