CocoaPods trunk is moving to be read-only. Read more on the blog, there are 10 months to go.

NSAttributedStringChain 0.0.1

NSAttributedStringChain 0.0.1

Maintained by capsule.



  • By
  • ONECATYU
    UILabel *contentLabel = ...;
    contentLabel.attributedText = NSAttributedString.chain
    .text(@"hello")
    .sysfontSize(17)
    .textColor([UIColor redColor])
    .backgroundColor([UIColor orangeColor])
    .strikethrough(YES)
    .strikethroughColor([UIColor yellowColor])
    .text(@",")
    .text(@"world")
    .textColor([UIColor orangeColor])
    ....
    .attributedString;