UILabel文字边距

UILabel文字边距

我正在设置a的左边插入/边距,UILabel但找不到这样做的方法。标签有一个背景设置,所以只是改变它的起源不会有效。10px左手边左右插入文本是理想的。



隔江千里
浏览 877回答 3
3回答

POPMUISE

我通过子类化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消息来触发它它会单独留下标签框 - 如果您的标签有背景并且您不希望它缩小,则很方便

慕后森

对于多行文本,可以使用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;
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

iOS