美文网首页
oc添加中划线

oc添加中划线

作者: 虫yu | 来源:发表于2020-04-17 15:16 被阅读0次
     NSString *originalCost = [NSString stringWithFormat:@"%.0f元",[mode.originalCost floatValue]];
        NSDictionary*attribtDic =@{NSStrikethroughStyleAttributeName: @(1),NSBaselineOffsetAttributeName : @(NSUnderlineStyleSingle)};
        NSMutableAttributedString*attribtStr = [[NSMutableAttributedString alloc] initWithString:originalCost attributes:attribtDic];
        self.label.attributedText= attribtStr;
    

    相关文章

      网友评论

          本文标题:oc添加中划线

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