123456789101112131415161718192021222324252627 |
- //
- // UILabel+lineAndWordSpace.h
- // tls
- //
- // Created by 张灿 on 2018/1/16.
- // Copyright © 2018年 tianlishe. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @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
|