childViewControllerContainingSegueSource method

UIViewController? childViewControllerContainingSegueSource(
  1. UIStoryboardUnwindSegueSource source
)

childViewControllerContainingSegueSource:

Implementation

UIViewController? childViewControllerContainingSegueSource(UIStoryboardUnwindSegueSource source) {
  final _$$ref = object$.ref;
  final _$$ref$1 = source.ref;
  objc.checkOsVersionInternal('UIViewController.childViewControllerContainingSegueSource:', iOS: (false, (9, 0, 0)));
  final $ret = _objc_msgSend_1sotr3r(
    _$$ref.pointer,
    _sel_childViewControllerContainingSegueSource_,
    _$$ref$1.pointer,
  );
  return $ret.address == 0 ? null : UIViewController.fromPointer($ret, retain: true, release: true);
}