Swift-具有两行文本的UIButton


93

我想知道是否可以用两行文本创建一个UIButton。我需要每行具有不同的字体大小。第一行将是17点,第二行将是11点。我试过将两个标签放在UIButton内,但我无法使它们停留在按钮的范围内。

我正在尝试在ui生成器中而不是通过编程来完成所有这些操作。

谢谢

Answers:


248

有两个问题。

我想知道是否可以用两行文本创建一个UIButton

这可以通过使用情节提要或以编程方式来实现。

故事板:

将“换行符模式”更改为“ 字符换行”“自动换行”,然后使用Alt / Option + Enter键在UIButton的“标题”字段中输入新行。

在此处输入图片说明

以编程方式:

override func viewDidAppear(animated: Bool) {
        super.viewDidAppear(animated)

        btnTwoLine?.titleLabel?.lineBreakMode = NSLineBreakMode.ByWordWrapping;
}

我需要每行具有不同的字体大小1

最坏的情况是,您可以使用自定义UIButton类并在其中添加两个标签。

更好的方法是利用NSMutableAttributedString。请注意,这只能通过编程来实现。

斯威夫特5:

@IBOutlet weak var btnTwoLine: UIButton?

override func viewDidAppear(animated: Bool) {
    super.viewDidAppear(animated)

    //applying the line break mode
    textResponseButton?.titleLabel?.lineBreakMode = NSLineBreakMode.byWordWrapping;
    let buttonText: NSString = "hello\nthere"

    //getting the range to separate the button title strings
    let newlineRange: NSRange = buttonText.range(of: "\n")

    //getting both substrings
    var substring1 = ""
    var substring2 = ""

    if(newlineRange.location != NSNotFound) {
        substring1 = buttonText.substring(to: newlineRange.location)
        substring2 = buttonText.substring(from: newlineRange.location)
    }

    //assigning diffrent fonts to both substrings
    let font1: UIFont = UIFont(name: "Arial", size: 17.0)!
    let attributes1 = [NSMutableAttributedString.Key.font: font1]
    let attrString1 = NSMutableAttributedString(string: substring1, attributes: attributes1)

    let font2: UIFont = UIFont(name: "Arial", size: 11.0)!
    let attributes2 = [NSMutableAttributedString.Key.font: font2]
    let attrString2 = NSMutableAttributedString(string: substring2, attributes: attributes2)

    //appending both attributed strings
    attrString1.append(attrString2)

    //assigning the resultant attributed strings to the button
    textResponseButton?.setAttributedTitle(attrString1, for: [])
}

较早的斯威夫特

@IBOutlet weak var btnTwoLine: UIButton?

override func viewDidAppear(animated: Bool) {
        super.viewDidAppear(animated)

        //applying the line break mode
        btnTwoLine?.titleLabel?.lineBreakMode = NSLineBreakMode.ByWordWrapping;

        var buttonText: NSString = "hello\nthere"

        //getting the range to separate the button title strings
        var newlineRange: NSRange = buttonText.rangeOfString("\n")

        //getting both substrings
        var substring1: NSString = ""
        var substring2: NSString = ""

        if(newlineRange.location != NSNotFound) {
            substring1 = buttonText.substringToIndex(newlineRange.location)
            substring2 = buttonText.substringFromIndex(newlineRange.location)
        }

        //assigning diffrent fonts to both substrings
        let font:UIFont? = UIFont(name: "Arial", size: 17.0)
        let attrString = NSMutableAttributedString(
            string: substring1 as String,
            attributes: NSDictionary(
                object: font!,
                forKey: NSFontAttributeName) as [NSObject : AnyObject])

        let font1:UIFont? = UIFont(name: "Arial", size: 11.0)
        let attrString1 = NSMutableAttributedString(
            string: substring2 as String,
            attributes: NSDictionary(
                object: font1!,
                forKey: NSFontAttributeName) as [NSObject : AnyObject])

        //appending both attributed strings
        attrString.appendAttributedString(attrString1)

        //assigning the resultant attributed strings to the button
        btnTwoLine?.setAttributedTitle(attrString, forState: UIControlState.Normal)

    }

输出量

在此处输入图片说明


2
效果很好。我现在想知道是否有任何方法可以使文本在每行上居中,是否有任何方法在两行之间插入更多的空间。
斯科特(Scott)

3
您可以将两个行文本都居中对齐。编写以下代码btnTwoLine?.titleLabel?.textAlignment = NSTextAlignment.Center或使用情节提要文件(控制部分->对齐)
Shamsudheen TK

我可以知道在两者之间插入更多行的目的是什么?
Shamsudheen TK

这取决于按钮的大小。如果按钮很大,则两行文本将在中间,顶部和底部有很多空间。那不是我想要的样子。
斯科特(Scott)

您必须在此处应用一些技巧:)您可以在多个\ n之间添加更多行。我的意思是,“ hello \ n \ n \ nthere”将为您提供三个空格。但是,不要忘了修改代码var newlineRange:NSRange = buttonText.rangeOfString(“ \ n \ n \ n”)
Shamsudheen TK 2015年

22

我一直在寻找几乎相同的主题,只是我不需要两种不同的字体大小。如果有人正在寻找简单的解决方案:

    let button = UIButton()
    button.titleLabel?.numberOfLines = 0
    button.titleLabel?.lineBreakMode = .byWordWrapping
    button.setTitle("Foo\nBar", for: .normal)
    button.titleLabel?.textAlignment = .center
    button.sizeToFit()
    button.addTarget(self, action: #selector(rightBarButtonTapped), for: .allEvents)
    navigationItem.rightBarButtonItem = UIBarButtonItem(customView: button)

12

我注意到大多数解决方案中存在一个问题,即在将换行模式设置为“字符换行”时,第二行将与第一行对齐

使所有线条居中。只需将标题从“普通”更改为“属性”,然后就可以使每条线居中

属性居中标题


6

将换行符更改为字符换行,选择按钮,然后在属性检查器中转到换行符并将其更改为字符换行

在此处输入图片说明


6

SWIFT 3语法

let str = NSMutableAttributedString(string: "First line\nSecond Line")
str.addAttribute(NSFontAttributeName, value: UIFont.systemFont(ofSize: 17), range: NSMakeRange(0, 10))
str.addAttribute(NSFontAttributeName, value: UIFont.systemFont(ofSize: 12), range: NSMakeRange(11, 11))
button.setAttributedTitle(str, for: .normal)

2
不知道为什么,但是我不得不添加button.titleLabel?.numberOfLines = 0
budidino

首先没有在Swift 4中工作。需要将“换行符”设置为“自动换行”。谢谢男人:)
卡兰·阿兰加特

原始的早期答案如下:stackoverflow.com/a/30679547/5318223
Kiril S.

5

我已解决此问题,而我的解决方案仅在情节提要中。

变化:

它在身份检查器->用户定义的运行时属性(这些关键路径)中添加:

  • numberOfLines = 2
  • titleLabel.textAlignment = 1

用户定义的运行时属性

我在属性检查器中添加了此代码:

  • 换行符=自动换行

自动换行


2

您需要在代码中执行其中的一些操作。您不能在IB中设置2种不同的字体。除了将换行符模式更改为字符换行之外,您还需要类似这样的内容来设置标题,

override func viewDidLoad() {
        super.viewDidLoad()
        var str = NSMutableAttributedString(string: "First line\nSecond Line")
        str.addAttribute(NSFontAttributeName, value: UIFont.systemFontOfSize(17), range: NSMakeRange(0, 10))
        str.addAttribute(NSFontAttributeName, value: UIFont.systemFontOfSize(12), range: NSMakeRange(11, 11))
        button.setAttributedTitle(str, forState: .Normal)

    }

1

我猜,一种方法是使用标签。我这样做了,看来还可以。我可以将其创建为UIButton,然后公开标签。我不知道这是否有意义。

    let firstLabel = UILabel()

    firstLabel.backgroundColor = UIColor.lightGrayColor()
    firstLabel.text = "Hi"
    firstLabel.textColor = UIColor.blueColor()
    firstLabel.textAlignment = NSTextAlignment.Center
    firstLabel.frame = CGRectMake(0, testButton.frame.height * 0.25, testButton.frame.width, testButton.frame.height * 0.2)
    testButton.addSubview(firstLabel)

    let secondLabel = UILabel()

    secondLabel.backgroundColor = UIColor.lightGrayColor()
    secondLabel.textColor = UIColor.blueColor()
    secondLabel.font = UIFont(name: "Arial", size: 12)
    secondLabel.text = "There"
    secondLabel.textAlignment = NSTextAlignment.Center
    secondLabel.frame = CGRectMake(0, testButton.frame.height * 0.5, testButton.frame.width, testButton.frame.height * 0.2)
    testButton.addSubview(secondLabel)

0

我的方式:

func setButtonTitle(title: String, subtitle: String, button: UIButton){
        //applying the line break mode
        button.titleLabel?.lineBreakMode = NSLineBreakMode.byWordWrapping;
        let title = NSMutableAttributedString(string: title, attributes: Attributes.biggestLabel)
        let subtitle = NSMutableAttributedString(string: subtitle, attributes: Attributes.label)
        let char = NSMutableAttributedString(string: "\n", attributes: Attributes.biggestLabel)
        title.append(char)
        title.append(subtitle)
        button.setAttributedTitle(title, for: .normal)
    }

0

不幸的是,当我想在CollectionView中使用一个多行按钮时,建议的解决方案对我来说不起作用。然后,一位同事向我展示了一种解决方法,如果有人遇到相同的问题,我想分享一下-希望能帮到您!创建一个从UIControl继承的类,并使用标签对其进行扩展,然后使其行为类似于按钮。

class MultilineButton: UIControl {

    let label: UILabel = {
        $0.translatesAutoresizingMaskIntoConstraints = false
        $0.numberOfLines = 0
        $0.textAlignment = .center
        return $0
    }(UILabel())

    override init(frame: CGRect) {
        super.init(frame: frame)

        addSubview(label)

        NSLayoutConstraint.activate([
            label.leadingAnchor.constraint(equalTo: layoutMarginsGuide.leadingAnchor),
            label.trailingAnchor.constraint(equalTo: layoutMarginsGuide.trailingAnchor),
            label.topAnchor.constraint(equalTo: layoutMarginsGuide.topAnchor),
            label.bottomAnchor.constraint(equalTo: layoutMarginsGuide.bottomAnchor)
        ])
    }

    override var isHighlighted: Bool {
        didSet {
            backgroundColor = backgroundColor?.withAlphaComponent(isHighlighted ? 0.7 : 1.0)
            label.textColor = label.textColor.withAlphaComponent(isHighlighted ? 0.7 : 1.0)
        }
    }

    required init?(coder: 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.