You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let radioButton = DLRadioButton()
let attrBold = [NSAttributedString.Key.font : UIFont.systemFont(ofSize: 16, weight: .bold)]
let attrNormal = [NSAttributedString.Key.font : UIFont.systemFont(ofSize: 16, weight: .regular)]
let attrString = NSMutableAttributedString(string: "Text a code to my number ending in ", attributes:attrNormal)
let boldStringPart = NSMutableAttributedString(string: value, attributes: attrBold)
attributedString.append(boldStringPart)
radioButton.titleLabel?.attributedText = attributedString
The text is not showing
Here is the image:
The text was updated successfully, but these errors were encountered:
The text is not showing
Here is the image:
The text was updated successfully, but these errors were encountered: