initWithNibName method

UITabBarController initWithNibName(
  1. NSString? nibNameOrNil, {
  2. NSBundle? bundle,
})

initWithNibName:bundle:

Implementation

UITabBarController initWithNibName(objc.NSString? nibNameOrNil, {objc.NSBundle? bundle}) {
  final _$$ref$6 = object$.ref;
  final _$$ref$7 = nibNameOrNil?.ref;
  final _$$ref$8 = bundle?.ref;
  objc.checkOsVersionInternal('UITabBarController.initWithNibName:bundle:', iOS: (false, (2, 0, 0)));
  final $ret = _objc_msgSend_15qeuct(
    _$$ref$6.retainAndReturnPointer(),
    _sel_initWithNibName_bundle_,
    _$$ref$7?.pointer ?? ffi.nullptr,
    _$$ref$8?.pointer ?? ffi.nullptr,
  );
  return UITabBarController.fromPointer($ret, retain: false, release: true);
}