NSAttributedStringChain 0.0.1

NSAttributedStringChain 0.0.1

capsule维护。



  • 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;