UILabel+lineAndWordSpace.h 559 B

123456789101112131415161718192021222324252627
  1. //
  2. // UILabel+lineAndWordSpace.h
  3. // tls
  4. //
  5. // Created by 张灿 on 2018/1/16.
  6. // Copyright © 2018年 tianlishe. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface UILabel (lineAndWordSpace)
  10. /**
  11. * 改变行间距
  12. */
  13. + (void)changeLineSpaceForLabel:(UILabel *)label WithSpace:(float)space;
  14. /**
  15. * 改变字间距
  16. */
  17. + (void)changeWordSpaceForLabel:(UILabel *)label WithSpace:(float)space;
  18. /**
  19. * 改变行间距和字间距
  20. */
  21. + (void)changeSpaceForLabel:(UILabel *)label withLineSpace:(float)lineSpace WordSpace:(float)wordSpace;
  22. @end