LogShareVC.h 720 B

12345678910111213141516171819202122232425
  1. //
  2. // LogShareVC.h
  3. // IBOSS
  4. //
  5. // Created by Dongke on 15/11/4.
  6. // Copyright © 2015年 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "LogAddViewController.h"
  10. #import "LogShareDelegate.h"
  11. @class LogShareTableViewCell;
  12. @interface LogShareVC : BaseViewController<LogShareDelegate>
  13. @property (weak, nonatomic) id<LogShareDelegate> shareDelegate;
  14. @property(strong) NSMutableArray *searchArr;
  15. @property(strong) NSMutableArray *filterArr;
  16. @property(nonatomic,strong) NSString *tag;
  17. @property CGFloat cellHeight;
  18. @property (strong, nonatomic) NSMutableDictionary *heights;
  19. @property(assign,nonatomic) BOOL isPresentViewFlg;
  20. //@property(nonatomic,weak) LogAddViewController *parentVC;
  21. @end