12345678910111213141516171819202122232425 |
- //
- // SYBase_tbVC.h
- // LNManager
- //
- // Created by EchoShacolee on 2017/4/7.
- // Copyright © 2017年 lee. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef void(^Block)(NSDictionary * successdic);
- @interface SYBase_tbVC : UIViewController
- @property (nonatomic, strong)NSMutableArray *dataSource;// 每行的内容
- @property (nonatomic, strong)NSMutableArray *sectionTitles; // 每个分区的标题
- @property (nonatomic, strong)NSMutableDictionary *requsetDic;//请求参数
- @property(nonatomic,retain)UITableView *tableView;
- @property(nonatomic,strong)HolderView * holderV;
- @property(nonatomic,copy)BlockTypeVo holdervBlock;
- -(void)getDataWithDic:(NSMutableDictionary *)mdic method:(NSString *)method block:(Block)block;
- - (void)showMsgByAlertVCWithString:(NSString *)str;
- @end
|