Instance Method
インスタンスメソッド
url(forResource:withExtension:)
Returns the file URL for the resource identified by the specified name and file extension.
指定された名前とファイル拡張子によって識別されるリソースに対するファイル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 PatternをBundle Programming Guideで読んでください。
See Also
参照
Finding Resource Files
リソースファイルを見つける