UILabel文字边距我正在设置a的左边插入/边距,UILabel但找不到这样做的方法。标签有一个背景设置,所以只是改变它的起源不会有效。10px左手边左右插入文本是理想的。
3 回答
POPMUISE
TA贡献1765条经验 获得超5个赞
我通过子类化UILabel
和覆盖解决了这个问题drawTextInRect:
:
- (void)drawTextInRect:(CGRect)rect { UIEdgeInsets insets = {0, 5, 0, 5}; [super drawTextInRect:UIEdgeInsetsInsetRect(rect, insets)];}
Swift 3.1:
override func drawText(in rect: CGRect) { let insets = UIEdgeInsets.init(top: 0, left: 5, bottom: 0, right: 5) super.drawText(in: UIEdgeInsetsInsetRect(rect, insets))}
Swift 4.2.1:
override func drawText(in rect: CGRect) { let insets = UIEdgeInsets(top: 0, left: 5, bottom: 0, right: 5) super.drawText(in: rect.inset(by: insets))}
正如你可能已经聚集的那样,这是对tc。答案的改编。它有两个优点:
没有必要通过发送
sizeToFit
消息来触发它它会单独留下标签框 - 如果您的标签有背景并且您不希望它缩小,则很方便
慕后森
TA贡献1802条经验 获得超5个赞
对于多行文本,可以使用NSAttributedString设置左边距和右边距。
NSMutableParagraphStyle *style = [[NSParagraphStyle defaultParagraphStyle] mutableCopy];style.alignment = NSTextAlignmentJustified;style.firstLineHeadIndent = 10.0f;style.headIndent = 10.0f;style.tailIndent = -10.0f; NSAttributedString *attrText = [[NSAttributedString alloc] initWithString:title attributes:@{ NSParagraphStyleAttributeName : style}]; UILabel * label = [[UILabel alloc] initWithFrame:someFrame];label.numberOfLines = 0;label.attributedText = attrText;
- 3 回答
- 0 关注
- 876 浏览
添加回答
举报
0/150
提交
取消