| 12345678910111213141516171819202122232425 |
- //
- // 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<LogShareDelegate>
- @property (weak, nonatomic) id<LogShareDelegate> 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
|