Type Method 型メソッド

arrayWithContentsOfURL:

Creates and returns a mutable array containing the contents specified by a given URL. ある可変配列を作成して返します、ある与えられたURLによって指定される内容を含んでいます。

Declaration 宣言

+ (NSMutableArray<ObjectType> *)arrayWithContentsOfURL:(NSURL *)url;

Parameters パラメータ

aURL

The location of the file containing a string representation of a mutable array produced by the writeToURL:atomically: method. writeToURL:atomically:メソッドによって生成される可変配列の文字列表現を含んでいるファイルの場所。

Return Value 戻り値

A mutable array containing the contents specified by aURL. Returns nil if the location can’t be opened or if the contents of the location can’t be parsed into a mutable array. aURLによって指定される内容を含むように初期化される可変配列。その場所が開かれることができないならば、または場所の内容が可変配列へと構文解析されることができないならばnilを返します。

Discussion 議論

The array representation at the location identified by aURL must contain only property list objects (NSString, NSData, NSDate, NSNumber, NSArray, or NSDictionary objects). The objects contained by this array are immutable even if the array is mutable. aURLによって識別される場所での配列表現は、ただプロパティリストオブジェクト(NSStringNSDataNSDateNSNumberNSArray、またはNSDictionaryオブジェクト)だけを含んでいなければなりません。この配列に含まれるオブジェクトは不変です、その配列が可変だとしてもです。

See Also 参照

Creating and Initializing a Mutable Array 可変Arrayを作成して初期化する

Related Documentation 関連文書