textContentType property

NSString get textContentType

textContentType

Implementation

objc.NSString get textContentType {
  final _$$ref = object$.ref;
  objc.checkOsVersionInternal('UITextField.textContentType', iOS: (false, (10, 0, 0)));
  if (!objc.respondsToSelector(_$$ref.pointer, _sel_textContentType)) {
    throw objc.UnimplementedOptionalMethodException('UITextField', 'textContentType');
  }
  final $ret = _objc_msgSend_151sglz(_$$ref.pointer, _sel_textContentType);
  return objc.NSString.fromPointer($ret, retain: true, release: true);
}
set textContentType (NSString value)

setTextContentType:

Implementation

set textContentType(objc.NSString value) {
  final _$$ref = object$.ref;
  final _$$ref$1 = value.ref;
  objc.checkOsVersionInternal('UITextField.setTextContentType:', iOS: (false, (10, 0, 0)));
  if (!objc.respondsToSelector(_$$ref.pointer, _sel_setTextContentType_)) {
    throw objc.UnimplementedOptionalMethodException('UITextField', 'setTextContentType:');
  }
  _objc_msgSend_xtuoz7(_$$ref.pointer, _sel_setTextContentType_, _$$ref$1.pointer);
}