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

url(forResource:withExtension:)

Returns the file URL for the resource identified by the specified name and file extension. 指定された名前とファイル拡張子によって識別されるリソースに対するファイルURLを返します。

Declaration 宣言

func url(forResource name: String?, 
withExtension ext: String?) -> URL?

Parameters パラメータ

name

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

If you specify nil, the method returns the first resource file it finds with the specified extension. あなたがnilを指定するならば、このメソッドは、それが最初に見つける、指定された拡張子を持つリソースファイルを返します。

extension

The extension of the resource file. リソースファイルの拡張子。

If extension is 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. extensionが空の文字列またはnilならば、拡張子は存在しないとみなされます、そしてファイルURLは最初に出くわしたぴったりnameに一致するファイルです。

Return Value 戻り値

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

Discussion 議論

If extension is an empty string or nil, the returned pathname is the first one encountered where the file name exactly matches name. For details on how localized resources are found, read The Bundle Search Pattern in Bundle Programming Guide. extensionが空の文字列またはnilならば、返されるパス名は最初に出くわしたものです、そこにおいてファイル名はぴったりnameに一致します。どのようにローカライズされたリソースが見つけられるかに関する詳細は、The Bundle Search PatternBundle Programming Guideで読んでください。

See Also 参照

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