Having some issues getting strikethrough to work. Currently I'm doing the following:
theString.addAttributes([
NSAttributedStringKey.strikethroughStyle: NSUnderlineStyle.styleSingle.rawValue,
NSAttributedStringKey.strikethroughColor: UIColor.white
], range: NSMakeRange(0, 1))
It's not showing any sort of strikethrough though. Any ideas? I can't seem to find anything that works.