label控件--关于价格显示中划线和下划线

来源:互联网 发布:淘宝退货退款邮费谁出 编辑:程序博客网 时间:2024/04/28 05:41

//中划线

        NSDictionary *attribtDic =@{NSStrikethroughStyleAttributeName: [NSNumbernumberWithInteger:NSUnderlineStyleSingle]};

//下划线

//        NSDictionary *attribtDic = @{NSUnderlineStyleAttributeName: [NSNumber numberWithInteger:NSUnderlineStyleSingle]};


        NSMutableAttributedString *attribtStr = [[NSMutableAttributedStringalloc]initWithString:oldStrattributes:attribtDic];

        oldPriceLabel.attributedText = attribtStr;


0 0
原创粉丝点击