spellCheckingType property
UITextSpellCheckingType
get
spellCheckingType
spellCheckingType
Implementation
UITextSpellCheckingType get spellCheckingType {
final _$$ref = object$.ref;
objc.checkOsVersionInternal('UITextField.spellCheckingType', iOS: (false, (5, 0, 0)));
if (!objc.respondsToSelector(_$$ref.pointer, _sel_spellCheckingType)) {
throw objc.UnimplementedOptionalMethodException('UITextField', 'spellCheckingType');
}
final $ret = _objc_msgSend_i01jza(_$$ref.pointer, _sel_spellCheckingType);
return UITextSpellCheckingType.fromValue($ret);
}
set
spellCheckingType
(UITextSpellCheckingType value)
setSpellCheckingType:
Implementation
set spellCheckingType(UITextSpellCheckingType value) {
final _$$ref = object$.ref;
objc.checkOsVersionInternal('UITextField.setSpellCheckingType:', iOS: (false, (5, 0, 0)));
if (!objc.respondsToSelector(_$$ref.pointer, _sel_setSpellCheckingType_)) {
throw objc.UnimplementedOptionalMethodException('UITextField', 'setSpellCheckingType:');
}
_objc_msgSend_6019sk(_$$ref.pointer, _sel_setSpellCheckingType_, value.value);
}