Instance Method
インスタンスメソッド
initWithContentsOfURL:
Initializes a newly allocated array with the contents of the location specified by a given URL.
新しく割り当てられた配列を、与えられたURLによって指定された位置での内容で初期化します。
Declaration
宣言
- (NSArray
<ObjectType> *)initWithContentsOfURL:(NSURL
*)url;
Return Value
戻り値
An array initialized to contain 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 an array. The returned object might be different than the original receiver.
aURL
によって指定される内容を含むように初期化される配列。その場所が開かれることができないならば、または場所の内容が配列へと構文解析されることができないならばnil
を返します。返されるオブジェクトは、オリジナルのレシーバとは異なるかもしれません。
Discussion
議論
The array representation at the location identified by aURL
must contain only property list objects (NSString
, NSData
, NSArray
, or NSDictionary
objects). The objects contained by this array are immutable, even if the array is mutable.
aURL
によって識別される場所での配列表現は、ただプロパティリストオブジェクト(NSString
、NSData
、NSArray
、またはNSDictionary
オブジェクト)だけを含んでいなければなりません。この配列に含まれるオブジェクトは不変です、その配列が可変だとしてもです。
See Also
参照
Initializing an Array
配列の初期化
- init
Initializes a newly allocated array.
新しく割り当てられた配列を初期化します
- initWithArray:
Initializes a newly allocated array by placing in it the objects contained in a given array.
新しく割り当てされた配列を、与えられた配列の中に含まれるオブジェクトをそれの中に置くことによって初期化します。
- initWithArray:copyItems:
Initializes a newly allocated array using anArray
as the source of data objects for the array.
新しく割り当てられた配列を、anArray
をその配列のデータオブジェクトのソースとして使って初期化します。
- initWithContentsOfFile:
Initializes a newly allocated array with the contents of the file specified by a given path.
新しく割り当てられた配列を、与えられたパスによって指定されるファイルの内容で初期化します。
Deprecated
非推奨
- initWithObjects:
Initializes a newly allocated array by placing in it the objects in the argument list.
新しく割り当てられた配列を、引数リストのオブジェクトをそれの中に置くことによって初期化します。
- initWithObjects:count:
Initializes a newly allocated array to include a given number of objects from a given C array.
新しく割り当てられた配列を初期化して、与えられた数のオブジェクトをある与えられたC配列から含めるようにします。
Related Documentation
関連文書
+ arrayWithContentsOfURL:
Creates and returns an array containing the contents specified by a given URL.
与えられたURLによって指定される内容を含んでいる配列を作成して返します。
- writeToURL:atomically:
Writes the contents of the array to the location specified by a given URL.
配列の内容をある与えられたURLによって指定された位置に書き出します。