Create a string with text struck through

suggest change
NSMutableAttributedString *attributeString = [[NSMutableAttributedString alloc] initWithString:@"Your String here"];
[attributeString addAttribute:NSStrikethroughStyleAttributeName
                    value:@2
                    range:NSMakeRange(0, [attributeString length])];

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


NSAttributedString:
*Create a string with text struck through

Table Of Contents