labe 加刪除線

  UILabel *lable = [[UILabel allocinitWithFrame:CGRectMake(2060100,30)];

    [self.xuzhiView addSubview:lable];

    lable.backgroundColor = [UIColor redColor];

    lable.textAlignment = NSTextAlignmentCenter;

    NSString *oldPrice = @"¥ 999999";

    NSUInteger length = [oldPrice length];

    

    NSMutableAttributedString *attri = [[NSMutableAttributedString alloc]initWithString:oldPrice];

    [attri addAttribute:NSStrikethroughStyleAttributeNamevalue:@(NSUnderlinePatternSolid | NSUnderlineStyleSingle) range:NSMakeRange(0, length)];

    [attri addAttribute:NSStrikethroughColorAttributeName value:[UIColoryellowColorrange:NSMakeRange(0, length)];

    [lable setAttributedText:attri];


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章