Type Method 型メソッド

bundleWithURL:

Returns an NSBundle object that corresponds to the specified file URL. 指定されたファイルURLに一致するNSBundleオブジェクトを返します。

Declaration 宣言

+ (instancetype)bundleWithURL:(NSURL *)url;

Parameters パラメータ

url

The URL to a directory. This must be a URL for a directory; if it contains any symbolic links, they must be resolvable. あるディレクトリへのURL。これは、ディレクトリに対するURLでなければなりません;それが何らかのシンボリックリンクいくつかを含むならば、それらは解決されなければなりません。

Return Value 戻り値

The NSBundle object that corresponds to url, or nil if url does not identify an accessible bundle directory. NSBundleオブジェクトでurlに一致するもの、またはnil、もしurlがアクセス可能なバンドルディレクトリを識別しないならば。

Discussion 議論

This method allocates and initializes the returned object if there is no existing NSBundle associated with url, in which case it returns the existing object. このメソッドは、返されるオブジェクトをアロケートおよび初期化します、もし既存のNSBundleurlと結びつけられるものがないならば、その場合にはそれは既存のオブジェクトを返します。

See Also 参照

Creating and Initializing a Bundle バンドルの作成と初期化