UGLabel.h 327 B

12345678910111213141516171819202122
  1. //
  2. // UGLabel.h
  3. // VideoHeadline
  4. //
  5. // Created by admin on 2020/8/17.
  6. // Copyright © 2020 IgCoding. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface UGLabel : UILabel
  11. /**
  12. 设置lable的内间距
  13. */
  14. @property (assign, nonatomic) UIEdgeInsets edgeInsets;
  15. @end
  16. NS_ASSUME_NONNULL_END