SLPaddingLabel.m 410 B

12345678910111213141516171819
  1. //
  2. // SLPaddingLabel.m
  3. // DarkMode
  4. //
  5. // Created by wsl on 2019/10/19.
  6. // Copyright © 2019 wsl. All rights reserved.
  7. //
  8. #import "SLPaddingLabel.h"
  9. @implementation SLPaddingLabel
  10. - (void)drawTextInRect:(CGRect)rect {
  11. [super drawTextInRect:UIEdgeInsetsInsetRect(rect, _textPadding)];
  12. }
  13. - (void)setTextPadding:(UIEdgeInsets)textPadding {
  14. _textPadding = textPadding;
  15. [self setNeedsLayout];
  16. }
  17. @end