gpt4 book ai didi

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

转载 作者:IT王子 更新时间:2023-10-29 05:36:15 28 4
gpt4 key购买 nike

我已将一些属性添加到我的按钮 attributedTitle

 let attr = NSMutableAttributedString(string: currTitle)

attr.addAttribute(NSStrikethroughStyleAttributeName, value: 2, range: NSMakeRange(0, attr.length))
attr.addAttribute(NSForegroundColorAttributeName, value: UIColor.redColor(), range: NSMakeRange(0, attr.length))

currButton?.setAttributedTitle(attr, forState: UIControlState.Normal)

如何在单击按钮后从中删除 NSStrikethroughStyleAttributeName?

最佳答案

使用removeAttribute 方法:

attr.removeAttribute(NSStrikethroughStyleAttributeName, range: NSMakeRange(0, attr.length))

关于ios - 如何从 NSAttributedString swift 中删除属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33806163/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com