// // 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 @optional -(void)showDetail:(int)index; -(void) btnCheckPressed:(LogCommentTableViewCell *)cell; @end @interface LogCommentVC : BaseViewController @property(strong) NSMutableArray *searchArr; @property(strong) NSMutableArray *filterArr; @property(weak) id commentDelegate;//产品搜索委托 @property (strong, nonatomic) NSMutableDictionary *heights; @end