ios – 如何从NSAttributedString swift中删除属性?

前端之家收集整理的这篇文章主要介绍了ios – 如何从NSAttributedString swift中删除属性?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在按钮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))

猜你在找的iOS相关文章