美文网首页
UILabel中划线

UILabel中划线

作者: 丶逐渐 | 来源:发表于2017-08-12 11:12 被阅读13次

今早发线模拟器iOS10.3.1的UIlabel中的  中划线没有了类似这样的:

第一种方式:

NSString*string =@“¥200.00”;       

NSMutableAttributedString *attributeString = [[NSMutableAttributedString alloc] initWithString:string];       

[attributeString setAttributes:@{NSStrikethroughStyleAttributeName: [NSNumbernumberWithInteger:NSUnderlineStyleSingle]} range:NSMakeRange(0,string.length)];     

 _priceLabel.attributedText= attributeString;

第二种方式:

NSString*string =@“¥200.00”;      

 NSMutableAttributedString *attributeString = [[NSMutableAttributedString alloc] initWithString:string];       

[attributeString setAttributes:@{NSStrikethroughStyleAttributeName: [NSNumbernumberWithInteger:NSUnderlineStyleSingle], NSBaselineOffsetAttributeName : @(NSUnderlineStyleSingle)} range:NSMakeRange(0,string.length)];       

 _priceLabel.attributedText= attributeString;

Y(^o^)Y

相关文章

网友评论

      本文标题:UILabel中划线

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