typingAttributes property

NSDictionary? get typingAttributes

typingAttributes

Implementation

objc.NSDictionary? get typingAttributes {
  final _$$ref = object$.ref;
  objc.checkOsVersionInternal('UITextField.typingAttributes', iOS: (false, (6, 0, 0)));
  final $ret = _objc_msgSend_151sglz(_$$ref.pointer, _sel_typingAttributes);
  return $ret.address == 0 ? null : objc.NSDictionary.fromPointer($ret, retain: true, release: true);
}
set typingAttributes (NSDictionary? value)

setTypingAttributes:

Implementation

set typingAttributes(objc.NSDictionary? value) {
  final _$$ref = object$.ref;
  final _$$ref$1 = value?.ref;
  objc.checkOsVersionInternal('UITextField.setTypingAttributes:', iOS: (false, (6, 0, 0)));
  _objc_msgSend_xtuoz7(_$$ref.pointer, _sel_setTypingAttributes_, _$$ref$1?.pointer ?? ffi.nullptr);
}