Questions tagged [ohattributedlabel]

Custom UILabel for iOS that supports NSAttributedString.

Custom UILabel for iOS that supports NSAttributedString. Open source link: https://github.com/AliSoftware/OHAttributedLabel/wiki

2 questions
1
vote
2 answers

How to set "NSBackgroundColorAttributeName" on TTTAttributedLabel, OHAttributedLabel or SETextView in Swift

I'm trying to set NSBackgroundColorAttributeName attribute on TTTAttributedLabel, OHAttributedLabel or SETextView, but it's not work. Anyone have any idea? Sample code is followed. class ViewController: UIViewController { @IBOutlet weak var…
yoshinbo
  • 741
  • 1
  • 6
  • 12
0
votes
2 answers

Line spacing doesn't work in OHAttributedLabel

This is the code: NSString *labelString = @"Username: \n some text"; NSMutableAttributedString *labelAttributedString = [[NSMutableAttributedString alloc]initWithString:labelString]; ... self.smartLabel.attributedText = labelAttributedString; The…
Luda
  • 7,282
  • 12
  • 79
  • 139