func write(to: URL)
func write(toFile : String, atomically: Bool) -> Bool
Deprecated 非推奨
Use write(to:)
instead.
write(to:)
を代わりに使ってください。
Availability 有効性
Technology
aURL
The URL to which to write the dictionary. それへと辞書を書き出すことになるURL。
flag
A flag that specifies whether the output should be written atomically. 出力がアトミックに書き出されるべきかどうかを指定するフラグ。
If flag
is true
, the dictionary is written to an auxiliary location, and then the auxiliary location is renamed to a
. If flag
is false
, the dictionary 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. flag
is ignored if a
is of a type that cannot be written atomically.
flag
がtrue
ならば、辞書は補助位置へ書き出されて、それからその補助位置はa
に改名されます。flag
がfalse
ならば、辞書はa
に直接に書き出されます。true
オプションはa
が、それがともかく存在するならば、破壊されないことをたとえシステムが書き出しの間にクラッシュするとしても保証します。flag
は、もしa
がアトミックに書き出されることができない型のものであるならば無視されます。
true
if the location is written successfully, otherwise false
.
true
、もしその場所がうまく書き出されるならば、そうでなければfalse
。
This method recursively validates that all the contained objects are property list objects (instances of NSData
, NSDate
, NSNumber
, NSString
, NSArray
, or NSDictionary
) before writing out the file, and returns false
if all the objects are not property list objects, since the resultant output would not be a valid property list.
このメソッドは、全ての含まれるオブジェクトがプロパティリストオブジェクト(NSData
、NSDate
、NSNumber
、NSString
、NSArray
、またはNSDictionary
のインスタンス)であることをファイルに清書する前に再帰的に検証します、そしてfalse
をもし全てのオブジェクトがプロパティリストオブジェクトでないならば返します、結果として生じる出力が有効なプロパティリストでないだろうことから。
If the dictionary’s contents are all property list objects, the location written by this method can be used to initialize a new dictionary with the class method dictionary
or the instance method init(contents
.
辞書の持つ内容が全てプロパティリストオブジェクトであるならば、このメソッドによって書き込まれる位置は、新しい辞書をクラスメソッドdictionary
またはインスタンスメソッドinit(contents
で初期化するために使われることができます。
If you need greater control over the property list representation, use Property
instead.
あなたがより大きな制御をプロパティリスト表現について必要とするならば、Property
を代わりに使ってください。
For more information about property lists, see Property List Programming Guide. プロパティリストについてのさらなる情報として、Property List Programming Guideを見てください。
func write(to: URL)
func write(toFile : String, atomically: Bool) -> Bool