Type Method 型メソッド

arrayWithContentsOfFile:

Creates and returns an array containing the contents of the file specified by a given path. 与えられたパスによって指定されるファイルの内容を含んでいる配列を作成して返します。

Declaration 宣言

+ (NSArray<ObjectType> *)arrayWithContentsOfFile:(NSString *)path;

Parameters パラメータ

aPath

The path to a file containing a string representation of an array produced by the writeToFile:atomically: method. writeToFile:atomically:メソッドによって生成される配列の文字列表現を含んでいるファイルへのパス。

Return Value 戻り値

An array containing the contents of the file specified by aPath. Returns nil if the file can’t be opened or if the contents of the file can’t be parsed into an array. aPathによって指定されるファイルの内容を含んでいる配列。そのファイルが開かれることができないならば、またはファイルの内容が配列へと構文解析されることができないならば、nilを返します。

Discussion 議論

The array representation in the file identified by aPath 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 array are immutable, even if the array is mutable. aPathによって識別されるファイルの中の配列表現は、ただプロパティリストオブジェクト(NSStringNSDataNSDateNSNumberNSArray、またはNSDictionaryオブジェクト)だけを含んでいなければなりません。さらなる詳細として、Property List Programming Guideを見てください。この配列に含まれるオブジェクトは不変です、その配列が可変だとしてもです。

See Also 参照

Creating an Array 配列の作成

Related Documentation 関連文書