Instance Method インスタンスメソッド

path(forResource:ofType:inDirectory:forLocalization:)

Returns the full pathname for the resource identified by the specified name and file extension, located in the specified bundle subdirectory, and limited to global resources and those associated with the specified localization. 指定された名前とファイル拡張子によって識別され、指定されたバンドル下位ディレクトリに位置して、そしてグローバルリソースでそして指定されたローカライゼーションと関連付けられるものに限られる、リソースに対する完全パス名を返します。

Declaration 宣言

func path(forResource name: String?, 
   ofType ext: String?, 
inDirectory subpath: String?, 
forLocalization localizationName: String?) -> String?

Parameters パラメータ

name

The name of the resource file. リソースファイルの名前。

If you specify nil, the method returns the first resource file it finds that matches the remaining criteria. あなたがnilを指定するならば、このメソッドは、それが最初に見つける、残りの基準に合致するリソースファイルを返します。

extension

The filename extension of the files to locate. 捜し出すファイルのファイル名拡張子。

If you specify an empty string or nil, the extension is assumed not to exist and the file is the first file encountered that exactly matches name. あなたが空の文字列またはnilを指定するならば、拡張子は存在しないとみなされます、そしてファイルは最初に出くわしたぴったりnameに一致するファイルです。

subpath

The name of the bundle subdirectory to search. 調査することになるバンドル下位ディレクトリの名前。

localizationName

The language ID for of the localization. This parameter should correspond to the name of one of the bundle's language-specific resource directories without the .lproj extension. ローカライゼーションのものに対する言語ID。このパラメータは、バンドルのもつ言語特有リソースディレクトリの1つの.lproj拡張子なしの名前と一致しなければなりません。

Return Value 戻り値

The full pathname for the resource file or nil if the file could not be located. リソースファイルに対する完全パス名またはファイルが捜し出されることができなかったならばnil

Discussion 議論

This method is equivalent to path(forResource:ofType:inDirectory:), except that only nonlocalized resources and those in the language-specific .lproj directory specified by localizationName are searched. このメソッドはpath(forResource:ofType:inDirectory:)と等しいです、しかしローカライズされないリソースと言語特有.lprojディレクトリでlocalizationNameによって指定されるものの中のそういったものだけが検索されることを除きます。

There should typically be little reason to use this method—see Getting the Current Language and Locale. See also preferredLocalizations(from:forPreferences:) for how to determine what localizations are available. 一般的にこのメソッドを使う理由はほとんどありません — Getting the Current Language and Localeを見てください。またpreferredLocalizations(from:forPreferences:)をどんなローカライゼーションが利用可能か明らかにする方法として見てください。

See Also 参照

Finding Resource Files リソースファイルを見つける