configurationUpdateHandler property

ObjCBlock<Void Function(UITableViewCell, UICellConfigurationState)>? get configurationUpdateHandler

configurationUpdateHandler

Implementation

objc.ObjCBlock<ffi.Void Function(UITableViewCell, UICellConfigurationState)>? get configurationUpdateHandler {
objc.checkOsVersionInternal('UITableViewCell.configurationUpdateHandler', iOS: (false, (15, 0, 0)));
  final _ret = _objc_msgSend_uwvaik(this.ref.pointer, _sel_configurationUpdateHandler);
  return _ret.address == 0 ? null : ObjCBlock_ffiVoid_UITableViewCell_UICellConfigurationState.castFromPointer(_ret, retain: true, release: true);
}
set configurationUpdateHandler (ObjCBlock<Void Function(UITableViewCell, UICellConfigurationState)>? value)

setConfigurationUpdateHandler:

Implementation

set configurationUpdateHandler(objc.ObjCBlock<ffi.Void Function(UITableViewCell, UICellConfigurationState)>? value) {
objc.checkOsVersionInternal('UITableViewCell.setConfigurationUpdateHandler:', iOS: (false, (15, 0, 0)));
_objc_msgSend_f167m6(this.ref.pointer, _sel_setConfigurationUpdateHandler_, value?.ref.pointer ?? ffi.nullptr);

}