| 1234567891011121314151617181920212223 |
- //
- // 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
|