#概要
UITextLabel上に表示する文字列に、取り消し線(Strike through)を引きたい場合、下記のようにNSAttributedStringKeyを利用することで簡単に実装することができます。
let attributeString: NSMutableAttributedString = NSMutableAttributedString(string: "Hello, World!!")
attributeString.addAttribute(NSAttributedStringKey.strikethroughStyle, value: 2, range: NSMakeRange(0, attributeString.length))
self.textLabel.attributedText = attributeString