Type Method 型メソッド

url(forResource:withExtension:subdirectory:in:)

Creates and returns a file URL for the resource with the specified name and extension in the specified bundle. 指定されたバンドルにおいて、指定された名前と拡張子を持つリソースに対するファイルURLを作成して返します。

Declaration 宣言

class func url(forResource name: String?, 
 withExtension ext: String?, 
  subdirectory subpath: String?, 
            in bundleURL: URL) -> URL?

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 file to locate. 捜し出すファイルのファイル名拡張子。

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

subpath

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

bundleURL

The file URL of the bundle to search. 調査することになるバンドルのファイルURL。

Return Value 戻り値

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

See Also 参照

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