Instance Method インスタンスメソッド

initWithContentsOfFile:

Initializes a newly allocated mutable array with the contents of the file specified by a given path 新しく割り当てられた可変配列を、与えられたパスによって指定されるファイルの内容で初期化します。

Declaration 宣言

- (NSMutableArray<ObjectType> *)initWithContentsOfFile:(NSString *)path;

Parameters パラメータ

aPath

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

Return Value 戻り値

A mutable array initialized to contain the contents of the file specified by aPath or nil if the file can’t be opened or the contents of the file can’t be parsed into a mutable array. The returned object must be different than the original receiver. 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). The objects contained by this array are immutable even if the array is mutable. aPathによって識別されるファイルの中の可変配列表現は、ただプロパティリストオブジェクト(NSStringNSDataNSDateNSNumberNSArray、またはNSDictionaryオブジェクト)だけを含んでいなければなりません。この配列に含まれるオブジェクトは不変です、その配列が可変だとしてもです。

See Also 参照

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

Related Documentation 関連文書