- initWithFileDescriptor:
Creates and returns a file handle object associated with the specified file descriptor.
- initWithFileDescriptor:closeOnDealloc:
Creates and returns a file handle object associated with the specified file descriptor and deallocation policy.
+ fileHandleForReadingAtPath:
Returns a file handle initialized for reading the file, device, or named socket at the specified path.
指定されたパスでのファイル、デバイス、または名前付きソケットの読み込みのために初期化されるファイルハンドルを返します。
+ fileHandleForReadingFromURL:error:
Returns a file handle initialized for reading the file, device, or named socket at the specified URL.
指定されたURLでのファイル、デバイス、または名前付きソケットの読み込みのために初期化されるファイルハンドルを返します。
+ fileHandleForWritingAtPath:
Returns a file handle initialized for writing to the file, device, or named socket at the specified path.
指定されたパスでのファイル、デバイス、または名前付きソケットへの書き出しのために初期化されるファイルハンドルを返します。
+ fileHandleForWritingToURL:error:
Returns a file handle initialized for writing to the file, device, or named socket at the specified URL.
指定されたURLでのファイル、デバイス、または名前付きソケットへの書き出しのために初期化されるファイルハンドルを返します。
+ fileHandleForUpdatingURL:error:
Returns a file handle initialized for reading and writing to the file, device, or named socket at the specified URL.
指定されたURLでのファイル、デバイス、または名前付きソケットの読み書きのために初期化されるファイルハンドルを返します。
- initWithCoder:
Returns a file handle initialized from data in an unarchiver.