gpt4 book ai didi

ios - 如何在 Xcode 7 中使用 Interface Builder 调整文本字距?

转载 作者:技术小花猫 更新时间:2023-10-29 10:46:11 26 4
gpt4 key购买 nike

我可以在 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 子类。根据需要调整字距。 enter image description here

在 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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com