Type Method 型メソッド

writePropertyList:toStream:format:options:error:

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

Declaration 宣言

+ (NSInteger)writePropertyList:(id)plist 
                      toStream:(NSOutputStream *)stream 
                        format:(NSPropertyListFormat)format 
                       options:(NSPropertyListWriteOptions)opt 
                         error:(out NSError * _Nullable *)error;

Parameters パラメータ

plist

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

stream

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

format

One of the property list formats defined in NSPropertyListFormat. NSPropertyListFormatにおいて定義されるプロパティリストフォーマットのうちの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 プロパティリストをシリアライズする