Type Method 型メソッド

dictionaryWithContentsOfURL:error:

Creates a dictionary using the keys and values found in a resource specified by a given URL. 与えられたURLによって指定されるリソース匂いて見つけられるキーと値を使って辞書を作成します。

Declaration 宣言

+ (NSDictionary<NSString *,ObjectType> *)dictionaryWithContentsOfURL:(NSURL *)url 
                                                               error:(NSError * _Nullable *)error;

Parameters パラメータ

url

A URL that identifies a resource containing a string representation of a property list whose root object is a dictionary. それのルートオブジェクトが辞書であるプロパティリストの文字列表現を含んでいるリソースを識別するURL。

Return Value 戻り値

A new dictionary that contains the dictionary at url, or nil if there is an error or if the contents of the resource are an invalid representation of a dictionary. urlでの辞書を含む新しい辞書、またはnil、もしエラーがあるならばまたはリソースの内容が無効な表現である辞書ならば。

Discussion 議論

The dictionary representation in the file identified by path must contain only property list objects (NSString, NSData, NSDate, NSNumber, NSArray, or NSDictionary objects). For more details, see Property List Programming Guide. The objects contained by this dictionary are immutable, even if the dictionary is mutable. pathによって識別されるファイルの中の辞書表現は、ただプロパティリストオブジェクト(NSStringNSDataNSDateNSNumberNSArray、またはNSDictionaryオブジェクト)だけを含んでいなければなりません。さらなる詳細として、Property List Programming Guideを見てください。この辞書に含まれるオブジェクトは不変です、その辞書が可変だとしてもです。

See Also 参照

Creating a Dictionary from an External Source 辞書を外部ソースから作成する