Developing a iPhone application - where I want the 'Spell checker' functionality to be turned off when the application starts, firstly, is this possible? if yes, can someone help me with the code for the same?
Secondly, if this is possible, and what would happen, if the user pauses my application, and goes and starts another application, for instance sending a SMS where by default the iOS turns on the spell checker - when the user would switch back to my app, would the spell checker be turned on then?
To turn off autocorrect on an Android device, you'll need to head to the Settings app and open the "Language and input" menu. Once you turn off autocorrect, your Android won't change what you type or offer predictive text options. After turning off autocorrect, you can turn it back on at any time.
To turn off autocorrection for a specific app, open the app, then choose Edit > Spelling and Grammar > Correct Spelling Automatically (it's off when a checkmark isn't shown). If an app's Edit menu doesn't include a spelling or grammar command, check its preferences or menus to see if it has its own spell checker.
Here's how. Click File > Options > Proofing, clear the Check spelling as you type box, and click OK. To turn spell check back on, repeat the process and select the Check spelling as you type box.
Tap Keyboard Settings, then turn on Predictive. Or go to Settings > General > Keyboard, and turn Predictive on or off.
Whether or not it’s enabled is a property of the text field, not of your application. It’s specified in the UITextInputTraits protocol; to disable autocorrection on a text field, you’d do this:
[myTextField setAutocorrectionType:UITextAutocorrectionTypeNo];
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With