Enumeration
列挙
NSDataReadingOptions
Options for methods used to read data objects.
データオブジェクトの読み出しに使用されるメソッドに対するオプション。
Declaration
宣言
typedef enum NSDataReadingOptions : NSUInteger
{
...
} NSDataReadingOptions;
Topics
話題
Constants
定数
NSDataReadingMappedIfSafe
A hint indicating the file should be mapped into virtual memory, if possible and safe.
ファイルが仮想メモリへと、もし可能で安全ならば、マップされるべきであることを指し示しているヒント。
NSDataReadingUncached
A hint indicating the file should not be stored in the file-system caches.
ファイルがファイルシステムキャッシュの中に格納されるべきでないことを指し示しているヒント。
See Also
参照
Reading Data from a File
ファイルからデータを読み出す
+ dataWithContentsOfFile:
Creates a data object by reading every byte from the file at a given path.
データオブジェクトを、ある与えられたパスでのファイルからあらゆるバイトを読み出すことによって作成します。
+ dataWithContentsOfURL:
Creates a data object containing the data from the location specified by a given URL.
与えられたURLによって指定される位置からのデータを含んでいるデータオブジェクト。
- initWithContentsOfFile:
Initializes a data object with the content of the file at a given path.
あるデータオブジェクトをある与えられたパスでのファイルの内容で初期化します。
- initWithContentsOfURL:
Initializes a data object with the data from the location specified by a given URL.
あるデータオブジェクトをある与えられたURLによって指定される場所からのデータで初期化します。
- initWithContentsOfMappedFile:
Initializes a data object with the contents of the mapped file specified by a given path.
あるデータオブジェクトをある与えられたパスによって指定されるマップファイルの内容で初期化します。
Deprecated
非推奨