// // UILabel+lineAndWordSpace.h // tls // // Created by 张灿 on 2018/1/16. // Copyright © 2018年 tianlishe. All rights reserved. // #import @interface UILabel (lineAndWordSpace) /** * 改变行间距 */ + (void)changeLineSpaceForLabel:(UILabel *)label WithSpace:(float)space; /** * 改变字间距 */ + (void)changeWordSpaceForLabel:(UILabel *)label WithSpace:(float)space; /** * 改变行间距和字间距 */ + (void)changeSpaceForLabel:(UILabel *)label withLineSpace:(float)lineSpace WordSpace:(float)wordSpace; @end