transitioningDelegate property
UIViewControllerTransitioningDelegate?
get
transitioningDelegate
transitioningDelegate
Implementation
UIViewControllerTransitioningDelegate? get transitioningDelegate {
objc.checkOsVersionInternal('UIViewController.transitioningDelegate', iOS: (false, (7, 0, 0)));
final _ret = _objc_msgSend_151sglz(this.ref.pointer, _sel_transitioningDelegate);
return _ret.address == 0
? null
: UIViewControllerTransitioningDelegate.castFromPointer(_ret, retain: true, release: true);
}
set
transitioningDelegate
(UIViewControllerTransitioningDelegate? value)
setTransitioningDelegate:
Implementation
set transitioningDelegate(UIViewControllerTransitioningDelegate? value) {
objc.checkOsVersionInternal('UIViewController.setTransitioningDelegate:', iOS: (false, (7, 0, 0)));
_objc_msgSend_xtuoz7(this.ref.pointer, _sel_setTransitioningDelegate_, value?.ref.pointer ?? ffi.nullptr);
}