作者热门文章
- objective-c - iOS 5 : Can you override UIAppearance customisations in specific classes?
- iphone - 如何将 CGFontRef 转换为 UIFont?
- ios - 以编程方式关闭标记的信息窗口 google maps iOS
- ios - Xcode 5 - 尝试验证存档时出现 "No application records were found"
我可以在 Interface Builder 中看到 NSAttributedParagraphStyle
的无数设置:
但这些都不是针对文本字距调整的。有没有办法在 Xcode 7 的 Interface Builder 中为属性文本调整文本字距?
(请不要回答如何在代码中执行此操作 - 我已经知道如何执行此操作!)
最佳答案
创建 UILabel 的子类,称为 KerningLabel,由以下代码组成:
import UIKit
@IBDesignable
class KerningLabel: UILabel {
@IBInspectable var kerning: CGFloat = 0.0 {
didSet {
if attributedText?.length == nil { return }
let attrStr = NSMutableAttributedString(attributedString: attributedText!)
let range = NSMakeRange(0, attributedText!.length)
attrStr.addAttributes([NSAttributedStringKey.kern: kerning], range: range)
attributedText = attrStr
}
}
}
拖出一个标签。将其更改为您的 UILabel 子类。根据需要调整字距。
在 obj-c 中:
.h
IB_DESIGNABLE
@interface KerningLabel : UILabel
@property (nonatomic) IBInspectable CGFloat kerning;
@end
.m
@implementation KerningLabel
- (void)setKerning:(CGFloat)kerning
{
_kerning = kerning;
if(self.attributedText)
{
NSMutableAttributedString *attribString = [[NSMutableAttributedString alloc]initWithAttributedString:self.attributedText];
[attribString addAttribute:NSKernAttributeName value:@(kerning) range:NSMakeRange(0, self.attributedText.length)];
self.attributedText = attribString;
}
}
@结束
关于ios - 如何在 Xcode 7 中使用 Interface Builder 调整文本字距?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32828140/
我是一名优秀的程序员,十分优秀!