我在按钮attributesTitle中添加了一些属性
let attr = NSMutableAttributedString(string: currTitle) attr.addAttribute(NSStrikethroughStyleAttributeName,value: 2,range: NSMakeRange(0,attr.length)) attr.addAttribute(NSForegroundColorAttributeName,value: UIColor.redColor(),attr.length)) currButton?.setAttributedTitle(attr,forState: UIControlState.Normal)
按钮点击后如何从中删除NSStrikethroughStyleAttributeName?
解决方法
使用removeAttribute方法:
attr.removeAttribute(NSStrikethroughStyleAttributeName,attr.length))