NSMutableParagraphStyle+Category.m 548 B

1234567891011121314151617181920212223242526
  1. //
  2. // NSMutableParagraphStyle+Category.m
  3. // 乐销
  4. //
  5. // Created by 隋林栋 on 2017/6/23.
  6. // Copyright © 2017年 ping. All rights reserved.
  7. //
  8. #import "NSMutableParagraphStyle+Category.h"
  9. @implementation NSMutableParagraphStyle (Category)
  10. /**
  11. 初始化
  12. @param lineSpace 行高
  13. @return 行高属性
  14. */
  15. + (instancetype)initWithLineSpace:(CGFloat)lineSpace{
  16. NSMutableParagraphStyle * paragraphStyle = [[NSMutableParagraphStyle alloc]init];
  17. paragraphStyle.lineSpacing = lineSpace;//行距
  18. return paragraphStyle;
  19. }
  20. @end