[iOS] 为文本加上横线方法

 _oldPriceLabel.text = @"3500";
_oldPriceLabel.textColor = [UIColor lightGrayColor];
NSMutableAttributedString *newPrice = [[NSMutableAttributedString alloc] initWithString:[NSString stringWithFormat:@"¥%@",_oldPriceLabel.text]];
[newPrice addAttribute:NSStrikethroughStyleAttributeName value:@(NSUnderlinePatternSolid | NSUnderlineStyleSingle) range:NSMakeRange(0, newPrice.length)];
 _oldPriceLabel.attributedText = newPrice;

 

转载于:https://www.cnblogs.com/death3721/p/6020687.html

你可能感兴趣的:([iOS] 为文本加上横线方法)