我想知道如何在 iOS 6 中设置字母间距?使用以下代码在 iOS 7 上运行良好,现在需要为 iOS 6 做:
NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:[arraySettings objectAtIndex:indexPath.row]];
float spacing = 0.2f;
[attributedString addAttribute:NSKernAttributeName
value:@(spacing)
range:NSMakeRange(0, [[arraySettings objectAtIndex:indexPath.row] length])];
cell.textLabel.attributedText = attributedString;
在 iOS 6 中崩溃上述代码后的错误图像:
谢谢。