如何在UILabel Words之间添加间距

时间:2014-04-29 20:58:34

标签: ios7 ios6 uilabel nsattributedstring

我想增加UILabel之间的空间。 从下面的代码我能够增加字符之间的空间,但我想用文字

 NSMutableAttributedString* attrStr = [[NSMutableAttributedString alloc] initWithString:string];
[attrStr addAttribute:NSKernAttributeName value:@(4.0) range:NSMakeRange(0, attrStr.length)];

非常感谢任何帮助或指针。

提前致谢

1 个答案:

答案 0 :(得分:2)

通过用两个空格替换一个空格来尝试这个棘手的方法:

NSString *str = [str stringByReplacingOccurrencesOfString:@" " withString:@"  "];