Instance Property インスタンスプロパティ

fileHandleForWriting

The receiver's write file handle. レシーバのもつ書き出しファイルハンドル。

Declaration 宣言

var fileHandleForWriting: FileHandle { get }

Discussion 議論

This object is automatically deallocated when the receiver is deallocated. このオブジェクトは、レシーバがデアロケートされる時に自動的にデアロケートされます。

You use the returned file handle to write to the pipe using NSFileHandle's write(_:) method. When you are finished writing data to this object, send it a closeFile() message to delete the descriptor. Deleting the descriptor causes the reading process to receive an end-of-data signal (an empty NSData object). あなたは、返されるファイルハンドルを使ってそのパイプへと、NSFileHandleのもつwrite(_:)メソッドを使って書き出します。あなたがこのオブジェクトへのデータの書き込みを終了した場合、それにcloseFile()メッセージを送ってディスクリプタを削除してください。ディスクリプタを削除することは、読み出しプロセスがデータ終端信号(空のNSDataオブジェクト)を受け取ることを引き起こします。

See Also 参照

Getting the File Handles for a Pipe パイプに対するファイルハンドルを取得する