我想增加UILabel之间的空间。 从下面的代码我能够增加字符之间的空间,但我想用文字
NSMutableAttributedString* attrStr = [[NSMutableAttributedString alloc] initWithString:string];
[attrStr addAttribute:NSKernAttributeName value:@(4.0) range:NSMakeRange(0, attrStr.length)];
非常感谢任何帮助或指针。
提前致谢
答案 0 :(得分:2)
通过用两个空格替换一个空格来尝试这个棘手的方法:
NSString *str = [str stringByReplacingOccurrencesOfString:@" " withString:@" "];