| 123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // LogAllViewController.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2017/5/5.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "RefreshTableView.h"
- #import "LogFrame.h"
- #import "ReplyInfo.h"
- #import "SendMessageView.h"
- #import "LogModel.h"
- #import "LogCell.h"
- #import "ReplyFrame.h"
- @interface LogAllViewController : BaseViewController<UITableViewDataSource, UITableViewDelegate,RefreshTableViewDelegate,UIGestureRecognizerDelegate,XHAlbumTableViewCellDelegate,SendMessageViewDelegate>
- @property (strong, nonatomic) NSMutableArray *dataList;
- @property (strong, nonatomic) NSMutableArray *newdataList;
- @property(nonatomic,strong) ASIDownManager *mDownManager;
- @property(nonatomic,strong) RefreshTableView *vCustomTableView;
- @property (nonatomic, strong) NSIndexPath *selectedIndexPath;
- @property (strong, nonatomic) LogFrame *logFrame;
- @property (strong, nonatomic) SendMessageView *commentView;
- @property (assign, nonatomic) NSInteger tag;
- @property (strong, nonatomic) ReplyInfo *replyInfo;
- @property(nonatomic,strong) LogModel *logModel;
- @property(nonatomic,strong) NSString *recordStatus;
- @property(nonatomic,strong) NSString *startDate;
- @property(nonatomic,strong) NSString *endDate;
- @property(nonatomic,strong) UINavigationController *cNav;
- @property(nonatomic,strong) NSString *createUserIds;
- @property (nonatomic, strong) UITableViewCell *prototypeCell;
- @property (assign, nonatomic) NSInteger currentIndex;
- -(void)reloadData;
- -(void)refresh;
- -(void) closeKeyboard;
- @end
|