单军华
2018-07-19 83b9d5c682b21d88133f24da0f94dd56bd79e687
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
//  TextHelper.h
//  RAlert
//
//  Created by roycms on 2016/11/26.
//  Copyright © 2016年 roycms. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
 
@interface TextHelper : NSObject
 
/**
 返回 attributedStringForString  格式的str
 
 @param str str description
 @param lineSpacing lineSpacing description
 @return return value description
 */
+ (NSMutableAttributedString *)attributedStringForString:(NSString *)str lineSpacing:(CGFloat)lineSpacing;
@end