- writeToFile:atomically:
The location at which to write the array. そこで配列を書き込むことになる位置。
Availability 有効性
Technology
- (BOOL)writeToURL:(NSURL
*)url
atomically:(BOOL)atomically;
aURL
The location at which to write the array. そこで配列を書き込むことになる位置。
flag
If YES
, the array is written to an auxiliary location, and then the auxiliary location is renamed to a
. If NO
, the array is written directly to a
. The YES
option guarantees that a
, if it exists at all, won’t be corrupted even if the system should crash during writing.
YES
ならば、配列はある補助的な位置に書き込まれます、それからその補助的な位置はa
に名前変更されます。NO
ならば、配列は直接にa
に書き出されます。YES
オプションはa
を保証します、それがともかく存在するならば、システムが書き出しの間にクラッシュするとしても。
YES
if the location is written successfully, otherwise NO
.
YES
、もしその場所がうまく書き出されるならば、そうでなければNO
。
If the array’s contents are all property list objects (NSString
, NSData
, NSArray
, or NSDictionary
objects), the location written by this method can be used to initialize a new array with the class method array
or the instance method init
.
配列の持つ内容が全てプロパティリストオブジェクトであるならば(NSString
, NSData
、NSArray
、またはNSDictionary
オブジェクト)、このメソッドによって書き込まれる位置は、新しい配列をクラスメソッドarray
またはインスタンスメソッドinit
で初期化するために使われることができます。
- writeToFile:atomically:
- initWithContentsOfURL: