I need to disable the word suggestions that the iOS keyboard provides with the Russian keyboard.
Reading this StackOverflow post states that the standard solution of setting .disableAutocorrection(true)
does not work for non "ASCII" conforming keyboards. I have verified this to be true with the Cyrillic Russian keyboard.
I am using SwiftUI
for my user experience, and cannot refactor the whole app to a Storyboard or UIKit
based experience
How do I disable the word suggestions with non-Latin character keyboards in Swift?