LKS_LocalInspectPanelLabelView.h 571 B

12345678910111213141516171819202122232425
  1. #ifdef SHOULD_COMPILE_LOOKIN_SERVER
  2. //
  3. // LKS_LocalInspectPanelLabelView.h
  4. // LookinServer
  5. //
  6. // Created by Li Kai on 2019/5/15.
  7. // https://lookin.work
  8. //
  9. #import <UIKit/UIKit.h>
  10. @interface LKS_LocalInspectPanelLabelView : UIView
  11. @property(nonatomic, strong) UILabel *leftLabel;
  12. @property(nonatomic, strong) UILabel *rightLabel;
  13. @property(nonatomic, assign) CGFloat verInset;
  14. @property(nonatomic, assign) CGFloat interspace;
  15. @property(nonatomic, strong) CALayer *bottomBorderLayer;
  16. - (void)addBottomBorderLayer;
  17. @end
  18. #endif /* SHOULD_COMPILE_LOOKIN_SERVER */