This is example code :
NSMutableAttributedString * str=[[NSMutableAttributedString alloc]initWithString:@"$198"];
[str addAttribute:NSStrikethroughStyleAttributeName value:@2 range:NSMakeRange(0,[str length])];
yourLabel.attributedText = str;