iPhone で簡単にテキストを打ち消す/消す方法があるかどうか知りたいですか?
ありがとう
NSMutableAttributedString *strikeThroughString = [[NSMutableAttributedString alloc] initWithString:anyString];
[strikeThroughString addAttribute:NSStrikethroughStyleAttributeName value:(NSNumber *)kCFBooleanTrue range:NSMakeRange(0, [as length])];
[m_cObjTaskTitle setAttributedText:strikeThroughString =];
cObjTaskTitle = UILabel ;
はいといいえ、
NSString はフォーマットされていないテキストのみを格納する単純なクラスですが、NSAttributedString を使用してそのような情報を格納できます。
NSAttributedString* italicText = [[NSAttributedString alloc] initWithString:myNsString attributes:myCrossOutAttributes];