previewImageHandler
A dictionary of keys and values that provide information about the item, such as the size of an image. For a list of possible keys, see Options Dictionary Key. 例えば画像のサイズなど、その項目の情報を提供するキーと値からなるある辞書。可能なキーのリストとして、オプション辞書キーを見てください。
Availability 有効性
Technology
- (void)loadPreviewImageWithOptions:(NSDictionary
*)options
completionHandler:(NSItemProviderCompletionHandler
)completionHandler;
options
オプション
A dictionary of keys and values that provide information about the item, such as the size of an image. For a list of possible keys, see Options Dictionary Key. 例えば画像のサイズなど、その項目の情報を提供するキーと値からなるある辞書。可能なキーのリストとして、オプション辞書キーを見てください。
completionHandler
A completion handler block to execute with the results. The first parameter of this block must be a parameter of type NSData
, NSURL
, UIImage
(in iOS), or NSImage
(in macOS) for receiving the image data. For more information about implementing the block, see NSItem
.
結果で実行する完了ハンドラブロック。このブロックの最初のパラメータは、受け取っているイメージデータに対してNSData
、NSURL
、UIImage
(iOSでは)、またはNSImage
(macOSでは)でなければなりません。このブロックの実装についての情報として、NSItem
を見てください。
To handle image preview yourself, provide a completion handler block that returns an NSData
or NSURL
object, or an instance of a platform-specific image class (UIImage
or NSImage
).
イメージプレビューをあなた自身で取り扱うには、NSData
またはNSURL
オブジェクトを返す完了ハンドラブロックを、またはプラットホーム特有のイメージクラス(UIImage
またはNSImage
)のインスタンスを提供してください。
This method supports implicit type coercion for the item parameter of the completion block. このメソッドは、暗黙的な型強制を完了ブロックのアイテムパラメータに対してサポートします。
previewImageHandler