backgroundView property

UIView? get backgroundView

backgroundView

Implementation

UIView? get backgroundView {
objc.checkOsVersionInternal('UITableViewCell.backgroundView', iOS: (false, (2, 0, 0)));
  final _ret = _objc_msgSend_151sglz(this.ref.pointer, _sel_backgroundView);
  return _ret.address == 0 ? null : UIView.castFromPointer(_ret, retain: true, release: true);
}
set backgroundView (UIView? value)

setBackgroundView:

Implementation

set backgroundView(UIView? value) {
objc.checkOsVersionInternal('UITableViewCell.setBackgroundView:', iOS: (false, (2, 0, 0)));
_objc_msgSend_xtuoz7(this.ref.pointer, _sel_setBackgroundView_, value?.ref.pointer ?? ffi.nullptr);

}