在swift中交叉删除文本

时间:2016-05-27 07:40:30

标签: swift nsattributedstring strikethrough

我需要快速删除Strikethrough文本,我使用NSMutableAttributedString完成了此操作,但是水平显示了删除。但我需要那个十字架 enter image description here

我的代码:

let attributeString: NSMutableAttributedString =  NSMutableAttributedString(string: textLabel.text!)
            attributeString.addAttribute(NSStrikethroughStyleAttributeName, value: 1, range: NSMakeRange(0, attributeString.length))
            attributeString.addAttribute(NSStrikethroughColorAttributeName, value: colors.kSkyColor, range: NSMakeRange(0, attributeString.length))
            textLabel.attributedText = attributeString

0 个答案:

没有答案