UILabel调整字间距
Posted zhchoutai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UILabel调整字间距相关的知识,希望对你有一定的参考价值。
1、引入
在文件导入
#import <CoreText/CoreText.h>
2、程序
NSMutableAttributedString *attributedString =[[NSMutableAttributedString alloc]initWithString:@"你的字符串"]; long number = 5.0f;//间距 CFNumberRef num = CFNumberCreate(kCFAllocatorDefault,kCFNumberSInt8Type,&number); [attributedString addAttribute:(id)kCTKernAttributeName value:(__bridge id)num range:NSMakeRange(0,[attributedString length])]; CFRelease(num); [ColumnIntroduce setAttributedText:attributedString];
以上是关于UILabel调整字间距的主要内容,如果未能解决你的问题,请参考以下文章