123456789101112131415161718192021222324252627 |
- #ifdef SHOULD_COMPILE_LOOKIN_SERVER
- //
- // LKS_PerspectiveHierarchyCell.h
- // LookinServer
- //
- // Created by Li Kai on 2018/12/24.
- // https://lookin.work
- //
- #import <UIKit/UIKit.h>
- @class LookinDisplayItem;
- @interface LKS_PerspectiveHierarchyCell : UITableViewCell
- @property(nonatomic, strong) LookinDisplayItem *displayItem;
- - (void)reRender;
- @property(nonatomic, strong, readonly) UIButton *indicatorButton;
- @end
- #endif /* SHOULD_COMPILE_LOOKIN_SERVER */
|