StructureNSData
NSData.ReadingOptions
Options for methods used to read data objects.
データオブジェクトの読み出しに使用されるメソッドに対するオプション。
Availability 有効性
- iOS 4.0+
- iPadOS 4.0+
- macOS 10.6+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
struct ReadingOptions, @unchecked Sendable
Topics 話題
Initializers イニシャライザ
Constants 定数
static var mappedIfSafe : NSData.ReadingOptions
A hint indicating the file should be mapped into virtual memory, if possible and safe.
ファイルが仮想メモリへと、もし可能で安全ならば、マップされるべきであることを指し示しているヒント。
static var uncached: NSData.ReadingOptions
A hint indicating the file should not be stored in the file-system caches.
ファイルがファイルシステムキャッシュの中に格納されるべきでないことを指し示しているヒント。
static var alwaysMapped : NSData.ReadingOptions
Hint to map the file in if possible.
もし可能ならば、ファイルをマップするためのヒント。
Legacy Constants レガシー定数
static var dataReadingMapped : NSData.ReadingOptions
Deprecated name for
mappedIfSafe
.
mappedIfSafe
に対する非推奨名。
static var mappedRead : NSData.ReadingOptions
Deprecated name for
dataReadingMapped
.
dataReadingMapped
に対する非推奨名。
static var uncachedRead : NSData.ReadingOptions
Deprecated
非推奨
See Also 参照
Reading Data from a File ファイルからデータを読み出す
init?(contentsOfFile : String)
Initializes a data object with the content of the file at a given path.
あるデータオブジェクトをある与えられたパスでのファイルの内容で初期化します。
init(contentsOfFile : String, options: NSData.ReadingOptions)
Initializes a data object with the content of the file at a given path.
あるデータオブジェクトをある与えられたパスでのファイルの内容で初期化します。
init?(contentsOf : URL)
Initializes a data object with the data from the location specified by a given URL.
あるデータオブジェクトをある与えられたURLによって指定される場所からのデータで初期化します。
init(contentsOf : URL, options: NSData.ReadingOptions)
Initializes a data object with the data from the location specified by a given URL.
あるデータオブジェクトをある与えられたURLによって指定される場所からのデータで初期化します。
init?(contentsOfMappedFile : String)
Initializes a data object with the contents of the mapped file specified by a given path.
あるデータオブジェクトをある与えられたパスによって指定されるマップファイルの内容で初期化します。
class func dataWithContentsOfMappedFile (String) -> Any?
Creates a data object from the mapped file at a given path.
与えられたパスでのマップファイルからデータオブジェクトを作成します。