func write(toFile : String, atomically: Bool) -> Bool
The location at which to write the array. そこで配列を書き込むことになる位置。
Availability 有効性
Technology
aURL
The location at which to write the array. そこで配列を書き込むことになる位置。
flag
If true
, the array is written to an auxiliary location, and then the auxiliary location is renamed to a
. If false
, the array is written directly to a
. The true
option guarantees that a
, if it exists at all, won’t be corrupted even if the system should crash during writing.
true
ならば、配列はある補助的な位置に書き込まれます、それからその補助的な位置はa
に名前変更されます。false
ならば、配列は直接にa
に書き出されます。true
オプションはa
を保証します、それがともかく存在するならば、システムが書き出しの間にクラッシュするとしても。
true
if the location is written successfully, otherwise false
.
true
、もしその場所がうまく書き出されるならば、そうでなければfalse
。
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(contents
.
配列の持つ内容が全てプロパティリストオブジェクトであるならば(NSString
, NSData
、NSArray
、またはNSDictionary
オブジェクト)、このメソッドによって書き込まれる位置は、新しい配列をクラスメソッドarray
またはインスタンスメソッドinit(contents
で初期化するために使われることができます。
func write(toFile : String, atomically: Bool) -> Bool
init?(contentsOf : URL)