| 1234567891011121314151617181920212223242526 |
- //
- // LogCommentVC.h
- // IBOSS
- //
- // Created by Dongke on 15/11/2.
- // Copyright © 2015年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "LogAddViewController.h"
- #import "CommentDelegate.h"
- @class LogCommentTableViewCell;
- @protocol LogCommentDelegate <NSObject>
- @optional
- -(void)showDetail:(int)index;
- -(void) btnCheckPressed:(LogCommentTableViewCell *)cell;
- @end
- @interface LogCommentVC : BaseViewController<LogCommentDelegate>
- @property(strong) NSMutableArray *searchArr;
- @property(strong) NSMutableArray *filterArr;
- @property(weak) id<CommentDelegate> commentDelegate;//产品搜索委托
- @property (strong, nonatomic) NSMutableDictionary *heights;
- @end
|