uibutton更改标题颜色部分

发布于 2025-01-17 11:59:09 字数 405 浏览 1 评论 0原文

我想像这张图片一样制作按钮。 为了像图片一样实现它,需要部分更改按钮标题的颜色,但我不知道该怎么办。

这是我的代码。

 private let signUpButton = UIButton().then {
    $0.setTitleColor(.black, for: .normal)
    $0.titleLabel?.font = .boldSystemFont(ofSize: 12)
}

enter image description here

I want to make button like this picture.
In order to implement it like a picture, the color of the button title needs to be partially changed, but I don't know what to do.

Here is my code.

 private let signUpButton = UIButton().then {
    $0.setTitleColor(.black, for: .normal)
    $0.titleLabel?.font = .boldSystemFont(ofSize: 12)
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半山落雨半山空 2025-01-24 11:59:09

为此目的使用nsmutableAttributedString

private let signUpButton = UIButton().then {
  // Creating gray text part
  let grayButtonText = NSAttributedString(string: "FirstPart", attributes: [.font: UIFont.systemFont(ofSize: 12), .foregroundColor: UIColor.gray ])
  // Creating black text part
  let blackButtonText = NSAttributedString(string: "SecondPart", attributes: [.font: UIFont.systemFont(ofSize: 12), .foregroundColor: UIColor.black ])

  // Merging two parts together
  let buttonTitle = NSMutableAttributedString(attributedString: grayButtonText)
  buttonTitle.append(blackButtonText)
  
  // Set it as a title for ".normal" state
  $0.setAttributedTitle(buttonTitle, for: .normal)
}

Use NSMutableAttributedString for this purpose

private let signUpButton = UIButton().then {
  // Creating gray text part
  let grayButtonText = NSAttributedString(string: "FirstPart", attributes: [.font: UIFont.systemFont(ofSize: 12), .foregroundColor: UIColor.gray ])
  // Creating black text part
  let blackButtonText = NSAttributedString(string: "SecondPart", attributes: [.font: UIFont.systemFont(ofSize: 12), .foregroundColor: UIColor.black ])

  // Merging two parts together
  let buttonTitle = NSMutableAttributedString(attributedString: grayButtonText)
  buttonTitle.append(blackButtonText)
  
  // Set it as a title for ".normal" state
  $0.setAttributedTitle(buttonTitle, for: .normal)
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文