简体   繁体   中英

Xamarin Forms iOS IsSpellCheckEnabled not working

I want to DISABLE spell check for an Entry item. I set this to False in the XAML -- I also set it to false in the code behind when I observed this didn't work as expected on iOS.

Bottom line: It doesn't appear to work on iOS. When I enter something iOS thinks is incorrect, it corrects it.

Does anyone have any info that might help me?

UPDATE:

Here is what the code behind looks like:

myTxt.IsSpellCheckEnabled = false;

SOLUTION UPDATE (Thanks to Jason): The following is also required...

myTxt.IsTextPredictionEnabled = false;

be sure to set IsTextPredictionEnabled = false too

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM