// // LogShareVC.h // IBOSS // // Created by Dongke on 15/11/4. // Copyright © 2015年 elongtian. All rights reserved. // #import "BaseViewController.h" #import "LogAddViewController.h" #import "LogShareDelegate.h" @class LogShareTableViewCell; @interface LogShareVC : BaseViewController @property (weak, nonatomic) id shareDelegate; @property(strong) NSMutableArray *searchArr; @property(strong) NSMutableArray *filterArr; @property(nonatomic,strong) NSString *tag; @property CGFloat cellHeight; @property (strong, nonatomic) NSMutableDictionary *heights; @property(assign,nonatomic) BOOL isPresentViewFlg; //@property(nonatomic,weak) LogAddViewController *parentVC; @end