美文网首页
label富文本添加删除线

label富文本添加删除线

作者: child_cool | 来源:发表于2017-08-14 09:30 被阅读47次
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];

相关文章

网友评论

      本文标题:label富文本添加删除线

      本文链接:https://www.haomeiwen.com/subject/egiyrxtx.html