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调整字间距的主要内容,如果未能解决你的问题,请参考以下文章

调整label的行间距、字间距

(转)iOS学习——UIlabel设置行间距和字间距

UILabel设置行间距和字间距并计算高度-b

根据 UILabel 动态调整 uitableViewCell 大小(带段落间距)

字间距怎么调?

字与字之间的间距怎么调 word中字与字之间的间距如何调整