Hi,
I found that setting textView.smartQuotesType = .no for a UITextView has no effect under Catalyst - it will replace standard quotes with typographic quotes anyway. Which is a bit annoying for an editor that shows code; the only workaround I found so far is to manually replace the quotes back to their original form:
text = text.replacingOccurrences(of: "“", with: "\"").replacingOccurrences(of: "„", with: "\"")
Example project for reproducing the issue: https://github.com/ralfebert/TextViewSmartQuotesExample
Anyone got the same issue/found a solution to disable smart quotes under Catalyst?
Greetings,
Ralf