在做优惠价格的时候需要用到删除线,NSAttributedString可以实现
UILabel *lab = [[UILabel alloc]initWithFrame:CGRectMake(100, 100, 200, 40)];
lab.textColor = [UIColor blackColor];
lab.font = [UIFont systemFontOfSize:20];
[self.view addSubview:lab];
NSString *oldPrice = @"醉里挑灯看剑";
NSUInteger length = [oldPrice length];
NSMutableAttributedString *attri = [[NSMutableAttributedString alloc] initWithString:oldPrice];
[attri addAttribute:NSStrikethroughStyleAttributeName value:@(NSUnderlinePatternSolid | NSUnderlineStyleSingle) range:NSMakeRange(0, length)];
[attri addAttribute:NSStrikethroughColorAttributeName value:[UIColor redColor] range:NSMakeRange(0, length)];
[lab setAttributedText:attri];