Type Method 型メソッド

arrayWithContentsOfFile:

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

Declaration 宣言

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

Parameters パラメータ

aPath

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

Return Value 戻り値

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

Discussion 議論

The mutable 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 and Initializing a Mutable Array 可変Arrayを作成して初期化する

Related Documentation 関連文書