LKS_LocalInspectPanelLabelView.h 490 B

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