如何为NSAttributedString的背景设置角半径?

时间:2017-08-06 01:35:57

标签: ios uilabel core-text

我想为UILabel上的部分文字设置一个角半径。我有范围。
以下代码设置背景颜色,但它将是一个矩形背景。

所以,我的问题是如何设置角半径

string.setAttributes([NSBackgroundColorAttributeName: UIColor.red], range: range)

感谢您的任何建议。

1 个答案:

答案 0 :(得分:-3)

yourLabel.layer.backgroundColor  = UIColor.redColor().CGColor
yourLabel.layer.cornerRadius = 5  //Change this value as your requirement
yourLabel.layer.masksToBounds = true

这段代码可以帮到你。