美文网首页
UILabel添加删除线的效果(类似于商品促销价格的效果)

UILabel添加删除线的效果(类似于商品促销价格的效果)

作者: 呼哮山庄 | 来源:发表于2016-10-12 08:58 被阅读47次

    直接上代码

     UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(100, 100, 200, 100)];
     [self.view addSubview:label];
     NSAttributedString *attributedString = [[NSAttributedString alloc]initWithString:@"10000¥"
                                  attributes:
     @{NSFontAttributeName:[UIFont systemFontOfSize:20.f],//设置字体大小
    NSForegroundColorAttributeName:[UIColor greenColor],//设置字体颜色
      NSStrikethroughStyleAttributeName:@(NSUnderlineStyleSingle|NSUnderlinePatternSolid),//设置删除线样式
    NSStrikethroughColorAttributeName:[UIColor redColor]}];//设置删除线颜色
    label.attributedText = attributedString;
    label.font = [UIFont systemFontOfSize:36 weight:50];
    

    效果图


    UILabel添加删除线

    相关文章

      网友评论

          本文标题:UILabel添加删除线的效果(类似于商品促销价格的效果)

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