92

如何在可能是多行字符串的文本下划线?我发现有些人建议使用 UIWebView,但对于仅文本渲染而言,它显然太重了。

我的想法是找出每行中每个字符串的起点和长度。并在其下相应地画一条线。

我遇到了如何计算字符串长度和起点的问题。

我尝试使用-[UILabel textRectForBounds:limitedToNumberOfLines:],这应该是文本的绘图边界矩形吧?那么我必须进行对齐工作吗?当每条线居中对齐和右对齐时,如何获得每条线的起点?

4

21 回答 21

136

您可以从 UILabel 子类化并覆盖 drawRect 方法:

- (void)drawRect:(CGRect)rect {
    CGContextRef ctx = UIGraphicsGetCurrentContext();
    CGContextSetRGBStrokeColor(ctx, 207.0f/255.0f, 91.0f/255.0f, 44.0f/255.0f, 1.0f); // RGBA
    CGContextSetLineWidth(ctx, 1.0f);

    CGContextMoveToPoint(ctx, 0, self.bounds.size.height - 1);
    CGContextAddLineToPoint(ctx, self.bounds.size.width, self.bounds.size.height - 1);

    CGContextStrokePath(ctx);

    [super drawRect:rect];  
}

UPD:
从 iOS 6 开始,Apple 添加了对 UILabel 的 NSAttributedString 支持,所以现在它更容易并且适用于多行:

NSDictionary *underlineAttribute = @{NSUnderlineStyleAttributeName: @(NSUnderlineStyleSingle)};
myLabel.attributedText = [[NSAttributedString alloc] initWithString:@"Test string" 
                                                         attributes:underlineAttribute];

如果您仍希望支持 iOS 4 和 iOS 5,我建议使用TTTAttributedLabel而不是手动下划线标签。但是,如果您需要在单行 UILabel 下划线并且不想使用第三方组件,那么上面的代码仍然可以解决问题。

于 2010-04-26T06:59:05.557 回答
54

在斯威夫特:

let underlineAttriString = NSAttributedString(string: "attriString",
                                          attributes: [NSAttributedString.Key.underlineStyle: NSUnderlineStyle.single.rawValue])
label.attributedText = underlineAttriString
于 2014-11-22T08:51:33.797 回答
38

这就是我所做的。它像黄油一样起作用。

1) 将 CoreText.framework 添加到您的框架中。

2)在需要下划线标签的类中导入<CoreText/CoreText.h>。

3) 编写以下代码。

    NSMutableAttributedString *attString = [[NSMutableAttributedString alloc] initWithString:@"My Messages"];
    [attString addAttribute:(NSString*)kCTUnderlineStyleAttributeName
              value:[NSNumber numberWithInt:kCTUnderlineStyleSingle]
              range:(NSRange){0,[attString length]}];
    self.myMsgLBL.attributedText = attString;
    self.myMsgLBL.textColor = [UIColor whiteColor];
于 2013-10-28T08:47:46.600 回答
19

使用属性字符串:

NSMutableAttributedString* attrString = [[NSMutableAttributedString alloc] initWithString:@"Your String"]
[attrString addAttribute:(NSString*)kCTUnderlineStyleAttributeName 
                   value:[NSNumber numberWithInt:kCTUnderlineStyleSingle] 
                   range:(NSRange){0,[attrString length]}];

然后覆盖标签 - (void)drawTextInRect:(CGRect)aRect 并将文本呈现为:

CGContextRef ctx = UIGraphicsGetCurrentContext();
CGContextSaveGState(ctx);
CTFramesetterRef framesetter = CTFramesetterCreateWithAttributedString((CFAttributedStringRef)attrString);
drawingRect = self.bounds;
CGMutablePathRef path = CGPathCreateMutable();
CGPathAddRect(path, NULL, drawingRect);
textFrame = CTFramesetterCreateFrame(framesetter,CFRangeMake(0,0), path, NULL);
CGPathRelease(path);
CFRelease(framesetter);
CTFrameDraw(textFrame, ctx);
CGContextRestoreGState(ctx);

或者更好的是,而不是使用由 Olivier Halligon 创建的OHAttributedLabel

于 2012-04-11T12:08:00.557 回答
15

我结合了一些提供的答案,以创建更好的(至少满足我的要求) UILabel 子类,它支持:

  • 具有各种标签边界的多行文本(文本可以在标签框架的中间,或精确的大小)
  • 强调
  • 三振出局
  • 下划线/删除线偏移
  • 文本对齐
  • 不同的字体大小

https://github.com/GuntisTreulands/UnderLineLabel

于 2012-08-06T10:56:11.767 回答
11

不想子类化视图(UILabel/UIButton)等的人......'forgetButton'也可以用任何标签替换。

-(void) drawUnderlinedLabel {
    NSString *string = [forgetButton titleForState:UIControlStateNormal];
    CGSize stringSize = [string sizeWithFont:forgetButton.titleLabel.font];
    CGRect buttonFrame = forgetButton.frame;
    CGRect labelFrame = CGRectMake(buttonFrame.origin.x + buttonFrame.size.width - stringSize.width, 
            buttonFrame.origin.y + stringSize.height + 1 , 
            stringSize.width, 2);
    UILabel *lineLabel = [[UILabel alloc] initWithFrame:labelFrame];
    lineLabel.backgroundColor = [UIColor blackColor];
    //[forgetButton addSubview:lineLabel];
    [self.view addSubview:lineLabel];
}
于 2011-01-11T15:36:21.673 回答
8
NSString *tem =self.detailCustomerCRMCaseLabel.text;
if (tem != nil && ![tem isEqualToString:@""]) {
    NSMutableAttributedString *temString=[[NSMutableAttributedString alloc]initWithString:tem];
    [temString addAttribute:NSUnderlineStyleAttributeName
                      value:[NSNumber numberWithInt:1]
                      range:(NSRange){0,[temString length]}];
    self.detailCustomerCRMCaseLabel.attributedText = temString;
}
于 2013-02-20T08:43:11.447 回答
7

另一个解决方案可能是(从 iOS 7 开始)给 一个负值NSBaselineOffsetAttributeName,例如你NSAttributedString可以是:

NSAttributedString *attributedText = [[NSAttributedString alloc] initWithString:@"my text goes here'
                                                            attributes:@{NSFontAttributeName: [UIFont fontWithName:@"Helvetica-Regular" size:12],
                                                                         NSForegroundColorAttributeName: [UIColor blackColor],
                                                                         NSUnderlineStyleAttributeName: @(NSUnderlineStyleSingle), NSBaselineOffsetAttributeName: @(-3)}];

希望这会有所帮助;-)

于 2015-04-21T17:14:44.447 回答
7
NSMutableAttributedString *text = [self.myUILabel.attributedText mutableCopy];
[text addAttribute:NSUnderlineStyleAttributeName value:@(NSUnderlineStyleSingle) range:NSMakeRange(0, text.length)];
self.myUILabel.attributedText = text;
于 2016-04-11T13:38:59.747 回答
3

这是对我有用的最简单的解决方案,无需编写额外的代码。

// To underline text in UILable
NSMutableAttributedString *text = [[NSMutableAttributedString alloc] initWithString:@"Type your text here"];
[text addAttribute:NSUnderlineStyleAttributeName value:@(NSUnderlineStyleSingle) range:NSMakeRange(0, text.length)];
lblText.attributedText = text;
于 2016-10-06T10:24:30.897 回答
3

有时我们的开发人员会陷入任何 UI 屏幕的小设计部分。最烦人的要求之一是在行文本下。别担心,这里有解决方案。

在此处输入图像描述

使用 Objective C 为 UILabel 中的文本添加下划线

UILabel *label=[[UILabel alloc]initWithFrame:CGRectMake(0, 0, 320, 480)];
label.backgroundColor=[UIColor lightGrayColor];
NSMutableAttributedString *attributedString;
attributedString = [[NSMutableAttributedString alloc] initWithString:@"Apply Underlining"];
[attributedString addAttribute:NSUnderlineStyleAttributeName value:@1 range:NSMakeRange(0,
[attributedString length])];
[label setAttributedText:attributedString];

使用 Swift 在 UILabel 中为文本添加下划线

 label.backgroundColor = .lightGray
 let attributedString = NSMutableAttributedString.init(string: "Apply UnderLining")
 attributedString.addAttribute(NSUnderlineStyleAttributeName, value: 1, range:
NSRange.init(location: 0, length: attributedString.length))
 label.attributedText = attributedString
于 2019-09-23T10:14:58.540 回答
3

您可以创建一个名为 UnderlinedLabel 的自定义标签并编辑 drawRect 函数。

#import "UnderlinedLabel.h"

@implementation UnderlinedLabel

- (void)drawRect:(CGRect)rect
{
   NSString *normalTex = self.text;
   NSDictionary *underlineAttribute = @{NSUnderlineStyleAttributeName: @(NSUnderlineStyleSingle)};
   self.attributedText = [[NSAttributedString alloc] initWithString:normalTex
                                                      attributes:underlineAttribute];

   [super drawRect:rect];
}
于 2016-01-11T09:48:08.830 回答
1

Kovpas代码的增强版(颜色和线条大小)

@implementation UILabelUnderlined

- (void)drawRect:(CGRect)rect {

    CGContextRef ctx = UIGraphicsGetCurrentContext();
    const CGFloat* colors = CGColorGetComponents(self.textColor.CGColor);

    CGContextSetRGBStrokeColor(ctx, colors[0], colors[1], colors[2], 1.0); // RGBA

    CGContextSetLineWidth(ctx, 1.0f);

    CGSize tmpSize = [self.text sizeWithFont:self.font constrainedToSize:CGSizeMake(200, 9999)];

    CGContextMoveToPoint(ctx, 0, self.bounds.size.height - 1);
    CGContextAddLineToPoint(ctx, tmpSize.width, self.bounds.size.height - 1);

    CGContextStrokePath(ctx);

    [super drawRect:rect];  
}

@end
于 2011-05-19T13:04:20.067 回答
1

我已经为带下划线的多行 uilabel 创建了:

对于字体大小 8 到 13 设置 int lineHeight = self.font.pointSize+3;

对于字体大小 14 到 20 设置 int lineHeight = self.font.pointSize+4;

- (void)drawRect:(CGRect)rect 

{

CGContextRef ctx = UIGraphicsGetCurrentContext();

const CGFloat* colors = CGColorGetComponents(self.textColor.CGColor);

CGContextSetRGBStrokeColor(ctx, colors[0], colors[1], colors[2], 1.0); // RGBA

CGContextSetLineWidth(ctx, 1.0f);
CGSize tmpSize = [self.text sizeWithFont:self.font constrainedToSize:CGSizeMake(self.frame.size.width, 9999)];

int height = tmpSize.height;

int lineHeight = self.font.pointSize+4;    

int maxCount = height/lineHeight;

float totalWidth = [self.text sizeWithFont:self.font constrainedToSize:CGSizeMake(1000, 9999)].width;

for(int i=1;i<=maxCount;i++)

{

    float width=0.0;
    if((i*self.frame.size.width-totalWidth)<=0)
        width = self.frame.size.width;
    else
        width = self.frame.size.width - (i* self.frame.size.width - totalWidth);
    CGContextMoveToPoint(ctx, 0, lineHeight*i-1);
    CGContextAddLineToPoint(ctx, width, lineHeight*i-1);
}

CGContextStrokePath(ctx);

[super drawRect:rect]; 
}
于 2011-08-25T07:32:26.553 回答
1

斯威夫特 4.1 版:

 let underlineAttriString = NSAttributedString(string:"attriString", attributes:
    [NSAttributedStringKey.underlineStyle: NSUnderlineStyle.styleSingle.rawValue])

label.attributedText = underlineAttriString
于 2018-09-12T10:45:19.863 回答
0

我使用开源线视图并将其添加到按钮子视图中:

 UILabel *label = termsButton.titleLabel;
 CGRect frame = label.frame;
 frame.origin.y += frame.size.height - 1;
 frame.size.height = 1;
 SSLineView *line = [[SSLineView alloc] initWithFrame:frame];
 line.lineColor = [UIColor lightGrayColor];
 [termsButton addSubview:line];

这是由上面的 Karim 启发的。

于 2011-10-07T18:40:32.357 回答
0

基于 Kovpas 和 Damien Praca 的回答,这里是 UILabelUnderligned 的实现,它也支持textAlignemnt

#import <UIKit/UIKit.h>

@interface UILabelUnderlined : UILabel

@end

和实施:

#import "UILabelUnderlined.h"

@implementation DKUILabel

- (id)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        // Initialization code
    }
    return self;
}

- (void)drawRect:(CGRect)rect {

    CGContextRef ctx = UIGraphicsGetCurrentContext();
    const CGFloat* colors = CGColorGetComponents(self.textColor.CGColor);

    CGContextSetRGBStrokeColor(ctx, colors[0], colors[1], colors[2], 1.0); // RGBA

    CGContextSetLineWidth(ctx, 1.0f);

    CGSize textSize = [self.text sizeWithFont:self.font constrainedToSize:CGSizeMake(200, 9999)];

    // handle textAlignement

    int alignementXOffset = 0;

    switch (self.textAlignment) {
        case UITextAlignmentLeft:
            break;
        case UITextAlignmentCenter:
            alignementXOffset = (self.frame.size.width - textSize.width)/2;
            break;
        case UITextAlignmentRight:
            alignementXOffset = self.frame.size.width - textSize.width;
            break;
    }

    CGContextMoveToPoint(ctx, alignementXOffset, self.bounds.size.height - 1);
    CGContextAddLineToPoint(ctx, alignementXOffset+textSize.width, self.bounds.size.height - 1);

    CGContextStrokePath(ctx);

    [super drawRect:rect];  
}


@end
于 2012-07-19T12:56:36.220 回答
0

正如 kovpas 所展示的,您可以在大多数情况下使用边界框,尽管并不总是保证边界框可以整齐地围绕文本。根据 UILabel 配置,高度为 50、字体大小为 12 的框可能无法提供您想要的结果。

查询 UILabel 中的 UIString 以确定其确切的指标,并使用这些指标更好地放置下划线,而不管封闭的边界框或框架如何,使用 kovpas 已经提供的绘图代码。

您还应该查看 UIFont 的“领先”属性,该属性根据特定字体给出基线之间的距离。基线是您希望绘制下划线的位置。

查找对 NSString 的 UIKit 添加:

(CGSize)sizeWithFont:(UIFont *)font 
//Returns the size of the string if it were to be rendered with the specified font on a single line.

(CGSize)sizeWithFont:(UIFont *)font constrainedToSize:(CGSize)size 
// Returns the size of the string if it were rendered and constrained to the specified size.

(CGSize)sizeWithFont:(UIFont *)font constrainedToSize:(CGSize)size lineBreakMode:(UILineBreakMode)lineBreakMode
//Returns the size of the string if it were rendered with the specified constraints.
于 2010-04-26T07:34:23.347 回答
0

这是另一个更简单的解决方案(下划线的宽度不是最准确的,但对我来说已经足够了)

我有一个(_view_underline)具有白色背景的 UIView,高度为 1 像素,每次更新文本时我都会更新它的宽度

// It's a shame you have to do custom stuff to underline text
- (void) underline  {
    float width = [[_txt_title text] length] * 10.0f;
    CGRect prev_frame = [_view_underline frame];
    prev_frame.size.width = width;
    [_view_underline setFrame:prev_frame];
}
于 2012-11-14T09:29:27.133 回答
0

可以将采用 NSNumber(其中 0 没有下划线)的 NSUnderlineStyleAttributeName 添加到属性字典中。我不知道这是否更容易。但是,这对我来说更容易。

    NSDictionary *attributes; 
    attributes = @{NSFontAttributeName:font,   NSParagraphStyleAttributeName: style, NSUnderlineStyleAttributeName:[NSNumber numberWithInteger:1]};

    [text drawInRect:CGRectMake(self.contentRect.origin.x, currentY, maximumSize.width, textRect.size.height) withAttributes:attributes];
于 2017-07-18T23:39:29.433 回答
0

你可以使用这个我的自定义标签!您也可以使用界面生成器来设置

import UIKit


class  YHYAttributedLabel : UILabel{
    
    
    @IBInspectable
    var underlineText : String = ""{
        
        didSet{

            self.attributedText = NSAttributedString(string: underlineText,
            attributes: [NSAttributedString.Key.underlineStyle: NSUnderlineStyle.single.rawValue])
        }
        
        
    }

}
于 2020-08-13T23:45:15.557 回答