Type Method 型メソッド

URLByResolvingAliasFileAtURL:options:error:

Returns a new URL made by resolving the alias file at url. 新しいURLを返します、urlでのエイリアスファイルを解決することによって作られます。

Declaration 宣言

+ (instancetype)URLByResolvingAliasFileAtURL:(NSURL *)url 
                                     options:(NSURLBookmarkResolutionOptions)options 
                                       error:(NSError * _Nullable *)error;

Parameters パラメータ

url

The URL pointing to the alias file. エイリアスファイルを指しているURL。

options オプション

Options taken into account when resolving the bookmark data. The NSURLBookmarkResolutionWithSecurityScope option is not supported by this method. ブックマークデータを解決する時に考慮に入れるオプション。NSURLBookmarkResolutionWithSecurityScopeオプションは、このメソッドによってサポートされません。

error

The error that occurred while trying to resolve the provided URL. 提供されたURLを解決しようとしている間に発生したエラー。

Return Value 戻り値

A new URL created by resolving the bookmark data derived from the provided alias file. If an error occurs, this method returns nil. ある新しいURL、提供されたエイリアスファイルから引き出されたブックマークデータを解決することによって作成されます。エラーが発生するならば、このメソッドはnilを返します。

Discussion 議論

Creates and initializes a new URL based on the alias file at url. Use this method to resolve bookmark data that was saved using writeBookmarkData:toURL:options:error: and resolves that data in one step. 新しいURLをurlでのエイリアスファイルにも基づいて作成して初期化します。このメソッドを使うことで、writeBookmarkData:toURL:options:error:を使って保存されたブックマークデータを解決してください、そしてそのデータを1段階で解決してださい。

If the url argument does not refer to an alias file as defined by the NSURLIsAliasFileKey property, this method returns the url argument. url引数がNSURLIsAliasFileKeyプロパティによって定義されるとおりにエイリアスファイルを参照しないならば、このメソッドはurl引数を返します。

If the url argument is unreachable, this method returns nil and the optional error argument is populated. url引数が到達可能でないならば、このメソッドはnilを返して、そして随意のエラー引数が入れられます。

See Also 参照

Creating an NSURL Object NSURLオブジェクトを作成する