1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // SYBase_tbVC.h
- // LNManager
- //
- // Created by EchoShacolee on 2017/4/7.
- // Copyright © 2017年 lee. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "NetworkManager.h"
- #import <MBProgressHUD.h>
- #import "AppDelegate.h"
- #import "SYBaseCell.h"
- #import "SelectCell.h"
- typedef void(^Block)(NSDictionary * successdic);
- @interface SYBase_tbVC : UIViewController<UITableViewDataSource,UITableViewDelegate,UISearchResultsUpdating>
- {
- 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
|