Type Method 型メソッド

urls(forResourcesWithExtension:subdirectory:in:)

Returns an array containing the file URLs for all bundle resources having the specified filename extension, residing in the specified resource subdirectory, within the specified bundle. 指定されたバンドル内部で、指定されたファイル名拡張子を持ち、指定されたリソース下位ディレクトリに属する、全てのバンドルリソースに対するファイルURLを含んでいる配列を返します。

Declaration 宣言

class func urls(forResourcesWithExtension ext: String?, 
   subdirectory subpath: String?, 
             in bundleURL: URL) -> [URL]?

Parameters パラメータ

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 all of the files in subpath are returned. あなたが空の文字列またはnilを指定するならば、拡張子は存在しないとみなされます、subpathの中の全てのファイルが返されます。

subpath

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

bundleURL

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

Return Value 戻り値

An array of file URLs for the resource files matching the criteria or an empty array if no files could be located. 基準に合致しているリソースファイルに対するファイルURLからなる配列、またはファイルが捜し出されることができなかったならば空の配列。

See Also 参照

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