label富文本添加删除线

2017-08-14  本文已影响47人  child_cool
NSString *oldPrice = self.oldMoney.text;
    NSUInteger length = [oldPrice length];
    NSMutableAttributedString *attritu = [[NSMutableAttributedString alloc]initWithString:self.oldMoney.text];
    [attritu addAttributes:@{
                             NSStrikethroughStyleAttributeName:@(NSUnderlineStyleThick),
                             NSForegroundColorAttributeName:
                                 [UIColor lightGrayColor],
                             NSBaselineOffsetAttributeName:
                                 @(0),
                             NSFontAttributeName: [UIFont systemFontOfSize:14]
                             } range:NSMakeRange(0, length)];
    [self.oldMoney setAttributedText:attritu];
上一篇 下一篇

猜你喜欢

热点阅读