NSString * str = @"ABCDEFG HIJKLMN";
UILabel * aLab = [[UILabel alloc]initWithFrame:CGRectMake(10, 100, 300, 300)];
aLab.text = str;
NSMutableAttributedString * testAttriString = [[NSMutableAttributedString alloc] initWithString:str];
[testAttriString addAttribute:NSStrikethroughStyleAttributeName value:[NSNumber numberWithInt:NSUnderlineStyleSingle] range:NSMakeRange(0, testAttriString.length)];
aLab.attributedText = testAttriString;
[self.view addSubview:aLab];
[原文链接](http://wpdome.sinaapp.com/?p=177%20%E5%8E%9F%E6%96%87%E9%93%BE%E6%8E%A5)[http://wpdome.sinaapp.com/?p=177](http://wpdome.sinaapp.com/?p=177)