Type Method 型メソッド

bundleWithPath:

Returns an NSBundle object that corresponds to the specified directory. 指定されたディレクトリに一致するNSBundleオブジェクトを返します。

Declaration 宣言

+ (instancetype)bundleWithPath:(NSString *)path;

Parameters パラメータ

fullPath

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

Return Value 戻り値

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

Discussion 議論

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

See Also 参照

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

Related Documentation 関連文書