BGPaddingLabel.m 361 B

1234567891011121314151617181920
  1. //
  2. // BGPaddingLabel.m
  3. // BuguLive
  4. //
  5. // Created by xfg on 2017/7/11.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import "BGPaddingLabel.h"
  9. @implementation BGPaddingLabel
  10. - (void)drawRect:(CGRect)rect
  11. {
  12. // 边距,上左下右
  13. UIEdgeInsets insets = {0, 5, 0, 5};
  14. [super drawTextInRect:UIEdgeInsetsInsetRect(rect, insets)];
  15. }
  16. @end