maskView property

UIView? get maskView

maskView

Implementation

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

setMaskView:

Implementation

set maskView(UIView? value) {
objc.checkOsVersionInternal('UIView.setMaskView:', iOS: (false, (8, 0, 0)));
_objc_msgSend_xtuoz7(this.ref.pointer, _sel_setMaskView_, value?.ref.pointer ?? ffi.nullptr);

}