123456789101112131415161718192021222324252627282930313233 |
- //
- // 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 "SelectCell.h"
- typedef void(^Block)(NSDictionary * successdic);
- @interface SYBase_tbVC : UIViewController
- {
- NSMutableArray *_dataSource;// 每行的内容
- NSMutableArray *_sectionTitles; // 每个分区的标题
- NSMutableDictionary *_requsetDic;//请求参数
-
- BlockTypeVo _block;//holderv(点击刷新)点击回调
- }
- @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
|