// // SYBase_tbVC.h // LNManager // // Created by EchoShacolee on 2017/4/7. // Copyright © 2017年 lee. All rights reserved. // #import #import "NetworkManager.h" #import #import "AppDelegate.h" #import "SYBaseCell.h" #import "SelectCell.h" typedef void(^Block)(NSDictionary * successdic); @interface SYBase_tbVC : UIViewController { NSMutableArray *_dataSource;// 每行的内容 NSMutableArray *_sectionTitles; // 每个分区的标题 NSMutableDictionary *_requsetDic;//请求参数 BlockTypeVo _block;//holderv(点击刷新)点击回调 UISearchController *_searchController; NSMutableArray *_resultArray;//搜索结果(目前有@【dic】和@【dic,indexpath】2种元素数组,基类只使用了count值) BOOL _hasSearch;//是否展示的搜索结果 } @property(nonatomic,retain)UITableView *tableView; @property(nonatomic,strong)HolderView * holderV; -(void)getDataWithDic:(NSMutableDictionary *)mdic method:(NSString *)method block:(Block)block; - (void)showMsgByAlertVCWithString:(NSString *)str; @end