SLPaddingLabel.h 344 B

12345678910111213141516171819
  1. //
  2. // SLPaddingLabel.h
  3. // DarkMode
  4. //
  5. // Created by wsl on 2019/10/19.
  6. // Copyright © 2019 wsl. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. /// 可以设置内边距的Label
  11. @interface SLPaddingLabel : UILabel
  12. /// 内边距
  13. @property (nonatomic, assign) UIEdgeInsets textPadding;
  14. @end
  15. NS_ASSUME_NONNULL_END