label 划线问题

来源:互联网 发布:大数据 veracity 编辑:程序博客网 时间:2024/09/21 09:08


        //中划线

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

        //下划线

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

  


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

       [attribtStr addAttribute:NSStrikethroughColorAttributeName value:[UIColor redColorrange:NSMakeRange(0, oldStr.length)];//删除线红色

        oldPriceLabel.attributedText = attribtStr;

0 0
原创粉丝点击