我不能幫你的故事板,但您可以通過編程這樣來做:
先爲您的標籤現在
yourLabel: UILabel =
{
let label = UILabel()
return label
}()
,有一些文字加粗其餘不是,你需要聲明一個NSMutableAttributedString,然後將它附加到另一個字符串上,如下所示:
yourLabel: UILabel =
{
let label = UILabel()
let attributedText = NSMutableAttributedString(string: "Your Text Here", attributes: [NSFontAttributeName: UIFont.systemFont(ofSize: 14)])
attributedText.append(NSAttributedString(string: "Your Bold Blue Text Here", attributes: [NSForegroundColorAttributeName: UIColor.blue, NSFontAttributeName: UIFont.boldSystemFont(ofSize: 14)]))
label.attributedText = attributedText
return label
}()
您現在可以將其中一個字符串設置爲鏈接/按鈕,而另一個則不可以。
希望它有幫助。