var writableTypeIdentifiersForItemProvider : [String]
Discussion 議論
Provide uniform type identifiers (UTIs) in order from highest fidelity to lowest. If your app employs a native data representation, place that first in the array. ユニホーム型識別子(UTI)を最高位から忠実に最低位までの順番で提供してください。あなたのアプリがある特定機種データ表現を必要とするならば、それを配列の最初においてください。
Implement this version of the property to offer a minimal list of UTIs that all resulting item provider instances can support. For example, using this version of the property for an NSURL
object, your implementation should return the public
UTI but not public
.
プロパティのこのバージョンを実装することで、最小限のUTIのリストを提示してください、それは全ての結果として生じるアイテムプロバイダインスタンスがサポート可能なものです。例えば、プロパティのこのバージョンをNSURL
オブジェクトに対して使って、あなたの実装はpublic
UTIを返すべきです、public
ではなく。
Use the class version of this property when you do not initialize an item provider with an object, thereby deferring the underlying object’s instantiation until the destination app needs it. このプロパティのクラス版を使うのは、あなたがアイテムプロバイダをオブジェクトで初期化しないで、それによって基礎をなすオブジェクトのインスタンス化を行き先アプリがそれを必要とするまで延期する時です。