文字上的删除线
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];
人生像攀登一座山,而找寻出路,却是一种学习的过程,我们应当在这过程中,学习稳定、冷静,学习如何从慌乱中找到生机。