LogCommentVC.h 692 B

1234567891011121314151617181920212223242526
  1. //
  2. // LogCommentVC.h
  3. // IBOSS
  4. //
  5. // Created by Dongke on 15/11/2.
  6. // Copyright © 2015年 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "LogAddViewController.h"
  10. #import "CommentDelegate.h"
  11. @class LogCommentTableViewCell;
  12. @protocol LogCommentDelegate <NSObject>
  13. @optional
  14. -(void)showDetail:(int)index;
  15. -(void) btnCheckPressed:(LogCommentTableViewCell *)cell;
  16. @end
  17. @interface LogCommentVC : BaseViewController<LogCommentDelegate>
  18. @property(strong) NSMutableArray *searchArr;
  19. @property(strong) NSMutableArray *filterArr;
  20. @property(weak) id<CommentDelegate> commentDelegate;//产品搜索委托
  21. @property (strong, nonatomic) NSMutableDictionary *heights;
  22. @end