取り消し線付きの属性付き文字列を作成しようとしていますが、この単純な作業は予想以上に難しいようです。ここに私が現在持っているものがあります(これはうまくいきません)。助けてくれてありがとう!取り消し線付きNSAttributedString
NSAttributedString *theTitle = [[[NSAttributedString alloc] initWithString:@"strikethrough text" attributes:[NSDictionary dictionaryWithObjectsAndKeys:[NSColor whiteColor], NSForegroundColorAttributeName, NSUnderlinePatternSolid, NSStrikethroughStyleAttributeName, nil]] autorelease];
完璧に...感謝しました。 – ambientdiscourse
これは非常に役に立ちました。ありがとう! NSUnderlinePatternSolid |の後の 'numberWithInteger:'メッセージを閉じるための閉じ括弧がありません。 NSUnderlineStyleSingle'の前と 'NSStrikethroughStyleAttributeName'の前に。 – morgant