1

iPhone で簡単にテキストを打ち消す/消す方法があるかどうか知りたいですか?

ありがとう

4

2 に答える 2

3
NSMutableAttributedString *strikeThroughString = [[NSMutableAttributedString alloc] initWithString:anyString];
[strikeThroughString addAttribute:NSStrikethroughStyleAttributeName value:(NSNumber *)kCFBooleanTrue range:NSMakeRange(0, [as length])];
[m_cObjTaskTitle setAttributedText:strikeThroughString =];
cObjTaskTitle = UILabel ;
于 2012-10-10T08:32:05.497 に答える
2

はいといいえ、

NSString はフォーマットされていないテキストのみを格納する単純なクラスですが、NSAttributedString を使用してそのような情報を格納できます。

NSAttributedString* italicText = [[NSAttributedString alloc] initWithString:myNsString attributes:myCrossOutAttributes];
于 2010-04-25T15:55:30.773 に答える