initWithURL method
initWithURL:
Implementation
NSBundle? initWithURL(NSURL url) {
objc.checkOsVersionInternal(
'NSBundle.initWithURL:',
iOS: (false, (4, 0, 0)),
macOS: (false, (10, 6, 0)),
);
final $ret = _objc_msgSend_1sotr3r(
object$.ref.retainAndReturnPointer(),
_sel_initWithURL_,
url.ref.pointer,
);
return $ret.address == 0
? null
: NSBundle.fromPointer($ret, retain: false, release: true);
}