case file
Specifies display of file byte counts. The actual behavior for this is platform-specific; in macOS 10.8, this uses the decimal style, but that may change over time.
ファイルバイト計数の表示を指定します。これの実際の挙動は、プラットホーム固有です;macOS 10.8では、これは10進法形式を使います、しかしそれは時を経て変わるかもしれません。
case memory
Specifies display of memory byte counts. The actual behavior for this is platform-specific; in macOS 10.8, this uses the binary style, but that may change over time.
メモリバイト計数の表示を指定します。これの実際の挙動は、プラットホーム固有です;macOS 10.8では、これは2進法形式を使います、しかしそれは時を経て変わるかもしれません。
case decimal
Causes 1000 bytes to be shown as 1 KB. It is better to use
ByteCountFormatter.CountStyle.file
or ByteCountFormatter.CountStyle.memory
in most cases.
1000バイトを1 KBと表示されるようにします。ByteCountFormatter.CountStyle.file
またはByteCountFormatter.CountStyle.memory
を扱うのにたいていの場合により良いものです。
case binary
Causes 1024 bytes to be shown as 1 KB. It is better to use
ByteCountFormatter.CountStyle.file
or ByteCountFormatter.CountStyle.memory
in most cases.
1024バイトを1 KBと表示されるようにします。ByteCountFormatter.CountStyle.file
またはByteCountFormatter.CountStyle.memory
を扱うのにたいていの場合により良いものです。