NSByteCountFormatterCountStyleFile
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進法形式を使います、しかしそれは時を経て変わるかもしれません。
NSByteCountFormatterCountStyleMemory
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進法形式を使います、しかしそれは時を経て変わるかもしれません。
NSByteCountFormatterCountStyleDecimal
Causes 1000 bytes to be shown as 1 KB. It is better to use
NSByteCountFormatterCountStyleFile
or NSByteCountFormatterCountStyleMemory
in most cases.
1000バイトを1 KBと表示されるようにします。NSByteCountFormatterCountStyleFile
またはNSByteCountFormatterCountStyleMemory
を扱うのにたいていの場合により良いものです。
NSByteCountFormatterCountStyleBinary
Causes 1024 bytes to be shown as 1 KB. It is better to use
NSByteCountFormatterCountStyleFile
or NSByteCountFormatterCountStyleMemory
in most cases.
1024バイトを1 KBと表示されるようにします。NSByteCountFormatterCountStyleFile
またはNSByteCountFormatterCountStyleMemory
を扱うのにたいていの場合により良いものです。