updateTextAttributesWithConversionHandler method

void updateTextAttributesWithConversionHandler(
  1. ObjCBlock<NSDictionary Function(NSDictionary)> conversionHandler
)

updateTextAttributesWithConversionHandler:

Implementation

void updateTextAttributesWithConversionHandler(
  objc.ObjCBlock<objc.NSDictionary Function(objc.NSDictionary)> conversionHandler,
) {
  objc.checkOsVersionInternal('UIResponder.updateTextAttributesWithConversionHandler:', iOS: (false, (13, 0, 0)));
  if (!objc.respondsToSelector(this.ref.pointer, _sel_updateTextAttributesWithConversionHandler_)) {
    throw objc.UnimplementedOptionalMethodException('UIResponder', 'updateTextAttributesWithConversionHandler:');
  }
  _objc_msgSend_f167m6(
    this.ref.pointer,
    _sel_updateTextAttributesWithConversionHandler_,
    conversionHandler.ref.pointer,
  );
}