func loadItem (forTypeIdentifier : String, options: [AnyHashable : Any]?, completionHandler : NSItemProvider.CompletionHandler?)
Loads the item’s data and coerces it (as needed) to the specified type.
項目の持つデータをロードして、それを(必要に応じて)指定された型へと強制します。
func loadDataRepresentation (forTypeIdentifier : String, completionHandler : (Data?, Error?) -> Void) -> Progress
Asynchronously copies the provided, typed data into a
Data
object, returning a Progress
object.
提供された、型付けされたデータをData
オブジェクトへと非同期にコピーします、Progress
オブジェクトを返します。
func loadFileRepresentation (forTypeIdentifier : String, completionHandler : (URL?, Error?) -> Void) -> Progress
Asynchronously writes a copy of the provided, typed data to a temporary file, returning a
Progress
object.
提供された、型付けされたデータを一時ファイルへと非同期に書き出します、Progress
オブジェクトを返します。
func loadInPlaceFileRepresentation (forTypeIdentifier : String, completionHandler : (URL?, Bool, Error?) -> Void) -> Progress
Asynchronously opens a file in place, if doing so is possible, returning a
Progress
object.
ファイルをその場で非同期に開きます、そうすることが可能ならば、Progress
オブジェクトを返します。