Type Method 型メソッド

writePropertyList(_:to:format:options:error:)

Writes a property list to the specified stream. プロパティリストをこの指定されたストリームに書き出します。

Declaration 宣言

class func writePropertyList(_ plist: Any, 
                          to stream: OutputStream, 
                      format: PropertyListSerialization.PropertyListFormat, 
                     options opt: PropertyListSerialization.WriteOptions, 
                       error: NSErrorPointer) -> Int

Parameters パラメータ

plist

The property list that you want to write out. あなたが書き出すことを望むプロパティリスト。

stream

An OutputStream instance that is open and ready to receive the property list data. あるOutputStreamインスタンス、それはプロパティリストデータを受け取るために開いてそして準備できているものです。

format

One of the property list formats defined in PropertyListSerialization.PropertyListFormat. PropertyListSerialization.PropertyListFormatにおいて定義されるプロパティリストフォーマットのうちの1つ。

opt

Currently unused. Set to 0. 現在使われません。0に設定してください。

error

A pointer that the function may set to an NSError object when an error occurs to provide additional information about the error. あるポインタ、それはエラー発生時に関数がNSErrorオブジェクトに向けて設定して、そのエラーについて追加情報を提供するかもしれません。

Return Value 戻り値

The number of bytes written to the stream. A return value of 0 indicates that an error occurred. ストリームに書き出されたバイト数。0の戻り値は、エラーが発生したことを指し示します。

See Also 参照

Serializing a Property List プロパティリストをシリアライズする