在UIButton中加下划线


143

谁能建议如何在UIButton的标题下划线?我有一个Custom类型的UIButton,并且希望在Title下划线,但是Interface Builder没有提供任何选择。

在Interface Builder中,当为按钮选择“字体选项”时,它提供了选择“无”,“单一”,“双精度”,“颜色”的选项,但是这些都不提供对按钮标题的任何更改。

任何帮助表示赞赏。


1
你可以使用UITextView的,与归属字符串添加一个链接到它在这个问题stackoverflow.com/questions/21629784/...
哈立德Annajar

Answers:


79

UIUnderlinedButton.h

@interface UIUnderlinedButton : UIButton {

}


+ (UIUnderlinedButton*) underlinedButton;
@end

UIUnderlinedButton.m

@implementation UIUnderlinedButton

+ (UIUnderlinedButton*) underlinedButton {
    UIUnderlinedButton* button = [[UIUnderlinedButton alloc] init];
    return [button autorelease];
}

- (void) drawRect:(CGRect)rect {
    CGRect textRect = self.titleLabel.frame;

    // need to put the line at top of descenders (negative value)
    CGFloat descender = self.titleLabel.font.descender;

    CGContextRef contextRef = UIGraphicsGetCurrentContext();

    // set to same colour as text
    CGContextSetStrokeColorWithColor(contextRef, self.titleLabel.textColor.CGColor);

    CGContextMoveToPoint(contextRef, textRect.origin.x, textRect.origin.y + textRect.size.height + descender);

    CGContextAddLineToPoint(contextRef, textRect.origin.x + textRect.size.width, textRect.origin.y + textRect.size.height + descender);

    CGContextClosePath(contextRef);

    CGContextDrawPath(contextRef, kCGPathStroke);
}


@end

1
也许没有您需要的及时!
尼克H247

4
谢谢,我最终将其调用如下:UIButton * btn = [UIUnderlinedButton buttonWithType:UIButtonTypeCustom];
hb922

2
该代码运行良好,但我注意到当视图在旋转时更改大小(由于drawRect未在旋转时调用)而导致下划线没有缩小/增长。可以通过将按钮设置为重绘来解决此问题,如下所示:myButton.contentMode = UIViewContentModeRedraw;当边界改变时,这将强制按钮重绘。
AndroidNoob 2013年

4
您也可以setTitle像这样重写方法:objective-c - (void)setTitle:(NSString *)title forState:(UIControlState)state { [super setTitle:title forState:state]; [self setNeedsDisplay]; }
Kirualex

378

要使用界面构建器强调,必须执行以下操作:

  • 将其更改为已归因
  • 在“属性”检查器中突出显示文本
  • 右键单击,选择“字体”,然后选择“下划线”

用IB下划线

别人制作的视频 https://www.youtube.com/watch?v=5-ZnV3jQd9I


2
好问题@ new2ios也许别人知道
finneycanhelp

1
我会问一个新问题,@ finneycanhelp。我希望在Xcode 6.3中会有更简单的方法。我的意思是,也许我可以设置您的解决方案,然后使用setTitle属性文本。对我来说,创建自定义按钮来绘制下划线有点有点异国情调(即使完成了一个应用程序,我可能还是iOS的新手)。
new2ios

2
finneydone帮助了!谢谢你!无法弄清楚为什么“字体”弹出对话框不起作用。右键单击是完美的。
IMFletcher 2015年

2
对于Interface Builder用户而言,这类简单的事情是一个很好的答案,而在代码中进行这些工作却很少。谢谢!(Y)
Randika Vishman

1
为什么iOS开发人员只喜欢为一个非常简单的问题而编写很长的代码?
mr5

129

从iOS6开始,现在可以使用NSAttributedString以更灵活的方式执行下划线(以及其他任何支持属性的字符串):

NSMutableAttributedString *commentString = [[NSMutableAttributedString alloc] initWithString:@"The Quick Brown Fox"];

[commentString addAttribute:NSUnderlineStyleAttributeName value:[NSNumber numberWithInteger:NSUnderlineStyleSingle] range:NSMakeRange(0, [commentString length])];

[button setAttributedTitle:commentString forState:UIControlStateNormal];

注意:这是另一个答案-与我以前的答案完全不同。

编辑:很 奇怪(至少在iOS8中),您必须在第一个字符下划线,否则它将不起作用!

因此,要解决此问题,请为第一个字符加下划线并添加清晰的颜色!

    // underline Terms and condidtions
    NSMutableAttributedString* tncString = [[NSMutableAttributedString alloc] initWithString:@"View Terms and Conditions"];

    // workaround for bug in UIButton - first char needs to be underlined for some reason!
    [tncString addAttribute:NSUnderlineStyleAttributeName
                      value:@(NSUnderlineStyleSingle)
                      range:(NSRange){0,1}];
    [tncString addAttribute:NSUnderlineColorAttributeName value:[UIColor clearColor] range:NSMakeRange(0, 1)];


    [tncString addAttribute:NSUnderlineStyleAttributeName
                      value:@(NSUnderlineStyleSingle)
                      range:(NSRange){5,[tncString length] - 5}];

    [tncBtn setAttributedTitle:tncString forState:UIControlStateNormal];

9
请注意,以这种方式进行操作时,还必须添加颜色的属性,因为属性标题文本将不使用您使用setTitleColor:forState设置的颜色:
daveMac 2013年

2
太棒了,谢谢@daveMac对颜色的注意。对于那些不知道该属性的人:NSForegroundColorAttributeName
Ryan Crews

在这种方法中,按钮下划线接近文本,是否有任何方法可以更改下划线的y位置?
Ilesh P

49

您可以在界面生成器本身中完成此操作。

  1. 选择属性检查器
  2. 将标题类型从普通更改为属性

在此处输入图片说明

  1. 设置适当的字体大小和文本对齐方式

在此处输入图片说明

  1. 然后选择标题文本并将字体设置为下划线

在此处输入图片说明


28

使用属性字符串非常简单

创建具有设置属性的字典,并将其应用于属性字符串。然后,您可以在uibutton中将属性字符串设置为attibutedtitle或在uilabel中将属性字符串设置为。

NSDictionary *attrDict = @{NSFontAttributeName : [UIFont
 systemFontOfSize:14.0],NSForegroundColorAttributeName : [UIColor
 whiteColor]};
 NSMutableAttributedString *title =[[NSMutableAttributedString alloc] initWithString:@"mybutton" attributes: attrDict]; 
[title addAttribute:NSUnderlineStyleAttributeName value:[NSNumber numberWithInteger:NSUnderlineStyleSingle] range:NSMakeRange(0,[commentString length])]; [btnRegLater setAttributedTitle:title forState:UIControlStateNormal];

什么commentString; 您从@ NickH247的答案中复制吗?
含义-

21

这是我的功能,可在Swift 1.2中使用。

func underlineButton(button : UIButton, text: String) {

    var titleString : NSMutableAttributedString = NSMutableAttributedString(string: text)
    titleString.addAttribute(NSUnderlineStyleAttributeName, value: NSUnderlineStyle.StyleSingle.rawValue, range: NSMakeRange(0, count(text.utf8)))
    button.setAttributedTitle(titleString, forState: .Normal)
}

UPDATE Swift 3.0扩展:

extension UIButton {
    func underlineButton(text: String) {
        let titleString = NSMutableAttributedString(string: text)
        titleString.addAttribute(NSUnderlineStyleAttributeName, value: NSUnderlineStyle.styleSingle.rawValue, range: NSMakeRange(0, text.characters.count))
        self.setAttributedTitle(titleString, for: .normal)
    }
}

13

尼克的答案是实现此目的的一种好方法。

我增加了drawRect对阴影的支持。

如果您的按钮标题在文本下方有阴影,则不会考虑尼克的答案:

在此处输入图片说明

但是您可以将下划线向下移动阴影的高度,如下所示:

CGFloat descender = self.titleLabel.font.descender;
CGContextRef contextRef = UIGraphicsGetCurrentContext();
CGFloat shadowHeight = self.titleLabel.shadowOffset.height;
descender += shadowHeight;

然后,您将获得如下内容:

在此处输入图片说明


self.titleLabel.font.descender; 在iOS 3.0中已贬值
-KING

5

对于Swift 3,可以使用以下扩展名:

extension UIButton {
    func underlineButton(text: String) {
        let titleString = NSMutableAttributedString(string: text)
        titleString.addAttribute(NSUnderlineStyleAttributeName, value: NSUnderlineStyle.styleSingle.rawValue, range: NSMakeRange(0, text.characters.count))
        self.setAttributedTitle(titleString, for: .normal)
    }
}

4
// Only override drawRect: if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
- (void)drawRect:(CGRect)rect {
CGRect textRect = self.titleLabel.frame;

// need to put the line at top of descenders (negative value)
CGFloat descender = self.titleLabel.font.descender;

CGContextRef contextRef = UIGraphicsGetCurrentContext();
UIColor *colr;
// set to same colour as text
if (self.isHighlighted || self.isSelected) {
    colr=self.titleLabel.highlightedTextColor;
}
else{
    colr= self.titleLabel.textColor;
}
CGContextSetStrokeColorWithColor(contextRef, colr.CGColor);

CGContextMoveToPoint(contextRef, textRect.origin.x, textRect.origin.y +        textRect.size.height + descender);

CGContextAddLineToPoint(contextRef, textRect.origin.x + textRect.size.width, textRect.origin.y + textRect.size.height + descender);

CGContextClosePath(contextRef);

CGContextDrawPath(contextRef, kCGPathStroke);
}
//Override this to change the underline color to highlighted color
-(void)setHighlighted:(BOOL)highlighted
{
[super setHighlighted:highlighted];
// [self setNeedsDisplay];
}

3

在扩展@Nick H247的答案时,我遇到了一个问题:首先,当旋转旋转按钮时,下划线没有重新绘制;可以通过将按钮设置为重绘来解决此问题,如下所示:

myButton.contentMode = UIViewContentModeRedraw; 

当边界改变时,这将迫使按钮重新绘制。

其次,原始代码假设您在按钮中只有1行文本(我的按钮在旋转时自动换行为2行),而下划线仅出现在文本的最后一行。可以修改drawRect代码,以首先计算按钮中的行数,然后在每行而不是仅底部放置下划线,如下所示:

 - (void) drawRect:(CGRect)rect {
CGRect textRect = self.titleLabel.frame;

// need to put the line at top of descenders (negative value)
CGFloat descender = self.titleLabel.font.descender;

CGContextRef contextRef = UIGraphicsGetCurrentContext();

// set to same colour as text
CGContextSetStrokeColorWithColor(contextRef, self.titleLabel.textColor.CGColor);

CGSize labelSize = [self.titleLabel.text sizeWithFont:self.titleLabel.font
                            constrainedToSize:self.titleLabel.frame.size
                                lineBreakMode:UILineBreakModeWordWrap];

CGSize labelSizeNoWrap = [self.titleLabel.text sizeWithFont:self.titleLabel.font forWidth:self.titleLabel.frame.size.width lineBreakMode:UILineBreakModeMiddleTruncation ];

int numberOfLines = abs(labelSize.height/labelSizeNoWrap.height);

for(int i = 1; i<=numberOfLines;i++) {
 //        Original code
 //        CGContextMoveToPoint(contextRef, textRect.origin.x, textRect.origin.y + textRect.size.height + descender + PADDING);
 //        
 //        CGContextAddLineToPoint(contextRef, textRect.origin.x + textRect.size.width, textRect.origin.y + textRect.size.height + descender);

    CGContextMoveToPoint(contextRef, textRect.origin.x, textRect.origin.y + (labelSizeNoWrap.height*i) + descender + PADDING);

    CGContextAddLineToPoint(contextRef, textRect.origin.x + textRect.size.width, textRect.origin.y + (labelSizeNoWrap.height*i) + descender);

    CGContextClosePath(contextRef);

    CGContextDrawPath(contextRef, kCGPathStroke);

}


}

希望这段代码对其他人有所帮助!


3

迅速

func underlineButton(button : UIButton) {

var titleString : NSMutableAttributedString = NSMutableAttributedString(string: button.titleLabel!.text!)
titleString.addAttribute(NSUnderlineStyleAttributeName, value: NSUnderlineStyle.StyleSingle.rawValue, range: NSMakeRange(0, button.titleLabel!.text!.utf16Count))
button.setAttributedTitle(titleString, forState: .Normal)}

3

您可以使用此代码在按钮中添加带下划线的下划线。

  • 当我尝试从界面生成器绘制下划线时。如下图所示。

1-界面构建器参考

在此处输入图片说明

  • 使用下面的代码后,我达到了想要的结果。

2-使用描述的代码

在此处输入图片说明

public func setTextUnderline()
    {
        let dummyButton: UIButton = UIButton.init()
        dummyButton.setTitle(self.titleLabel?.text, for: .normal)
        dummyButton.titleLabel?.font = self.titleLabel?.font
        dummyButton.sizeToFit()

        let dummyHeight = dummyButton.frame.size.height + 3

        let bottomLine = CALayer()
        bottomLine.frame = CGRect.init(x: (self.frame.size.width - dummyButton.frame.size.width)/2, y: -(self.frame.size.height - dummyHeight), width: dummyButton.frame.size.width, height: 1.0)
        bottomLine.backgroundColor = self.titleLabel?.textColor.cgColor
        self.layer.addSublayer(bottomLine)
    }

感谢您提供此代码段,它可能会提供一些有限的即时帮助。通过说明为什么这是一个解决问题的好方法,适当的解释将大大提高其长期价值,对于其他存在类似问题的读者来说,这样做将更为有用。请编辑您的答案以添加一些解释,包括您所做的假设。
Toby Speight

3

自2019年9月起在Xcode 10.3中运行的Swift 5.0版本:

extension UIButton {
  func underlineText() {
    guard let title = title(for: .normal) else { return }

    let titleString = NSMutableAttributedString(string: title)
    titleString.addAttribute(
      .underlineStyle,
      value: NSUnderlineStyle.single.rawValue,
      range: NSRange(location: 0, length: title.count)
    )
    setAttributedTitle(titleString, for: .normal)
  }
}

要使用它,请先使用设置按钮标题button.setTitle("Button Title", for: .normal),然后调用button.underlineText()以使该标题带有下划线。


1
据我所知,我可以确认它可以在iOS 10.3.1之前的版本上运行,Xcode 10.3不支持比Mojave上更早的模拟器。
Max Desiatov

2

当我们按住下划线按钮时,如何处理这种情况?在这种情况下,按钮的文本颜色会根据突出显示的颜色而变化,但行仍保持原始颜色。假设正常状态下的按钮文本颜色为黑色,则其下划线也将为黑色。按钮的突出显示颜色为白色。按住按钮可将按钮文本颜色从黑色更改为白色,但下划线颜色保持黑色。


2
您可以测试按钮是否突出显示和/或选择,并相应地设置颜色。不知道是否会自动请求重画,否则,您将需要覆盖setSelected / setHighlighted并调用super和[self setNeedsDisplay]
Nick H247

2

我相信这是XCode字体编辑器中的一些错误。如果使用界面生成器,则必须将标题从“普通”更改为“属性”,打开TextEdit创建带下划线的文本,然后将其复制粘贴到XCode中的文本框中。


2

尼克H247的答案,但迅速的方法:

import UIKit

class UnderlineUIButton: UIButton {

    override func drawRect(rect: CGRect) {
        super.drawRect(rect)

        let textRect = self.titleLabel!.frame

        var descender = self.titleLabel?.font.descender

        var contextRef: CGContextRef = UIGraphicsGetCurrentContext();

        CGContextSetStrokeColorWithColor(contextRef, self.titleLabel?.textColor.CGColor);

        CGContextMoveToPoint(contextRef, textRect.origin.x, textRect.origin.y + textRect.size.height + descender!);

        CGContextAddLineToPoint(contextRef, textRect.origin.x + textRect.size.width, textRect.origin.y + textRect.size.height + descender!);

        CGContextClosePath(contextRef);

        CGContextDrawPath(contextRef, kCGPathStroke);
    }
}

2
func underline(text: String, state: UIControlState = .normal, color:UIColor? = nil) {
        var titleString = NSMutableAttributedString(string: text)

        if let color = color {
            titleString = NSMutableAttributedString(string: text,
                               attributes: [NSForegroundColorAttributeName: color])
        }

        let stringRange = NSMakeRange(0, text.characters.count)
        titleString.addAttribute(NSUnderlineStyleAttributeName,
                                 value: NSUnderlineStyle.styleSingle.rawValue,
                                 range: stringRange)

        self.setAttributedTitle(titleString, for: state)
    }

1

@ NickH247的答案的Swift 3版本,带有自定义下划线颜色,线宽和间隙:

import Foundation

class UnderlinedButton: UIButton {

    private let underlineColor: UIColor
    private let thickness: CGFloat
    private let gap: CGFloat

    init(underlineColor: UIColor, thickness: CGFloat, gap: CGFloat, frame: CGRect? = nil) {
        self.underlineColor = underlineColor
        self.thickness = thickness
        self.gap = gap
        super.init(frame: frame ?? .zero)
    }

    override func draw(_ rect: CGRect) {
        super.draw(rect)

        guard let textRect = titleLabel?.frame,
            let decender = titleLabel?.font.descender,
            let context = UIGraphicsGetCurrentContext() else { return }

        context.setStrokeColor(underlineColor.cgColor)
        context.move(to: CGPoint(x: textRect.origin.x, y: textRect.origin.y + textRect.height + decender + gap))
        context.setLineWidth(thickness)
        context.addLine(to: CGPoint(x: textRect.origin.x + textRect.width, y: textRect.origin.y + textRect.height + decender + gap))
        context.closePath()
        context.drawPath(using: .stroke)
    }

    required init?(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.