Instance Method
インスタンスメソッド
validateDrop(info:)
Tells the delegate that a drop containing items conforming to one of the expected types entered a view that accepts drops.
委任先に、その予想された型の1つに準拠している項目を含んでいるあるドロップが、ドロップを受け取るビューに入ったことを伝えます。
Required. Default implementation provided.
必須。 提供される省略時の実装。
Discussion
議論
Specify the expected types when you apply the drop modifier to the view. The default implementation returns true
.
あなたがドロップ修飾子をビューに適用する時に、期待する型を指定してください。省略時の実装は、true
を返します。
Default Implementations
省略時実装
DropDelegate Implementations
func validateDrop(info: DropInfo) -> Bool
Tells the delegate that a drop containing items conforming to one of the expected types entered a view that accepts drops.
委任先に、その予想された型の1つに準拠している項目を含んでいるあるドロップが、ドロップを受け取るビューに入ったことを伝えます。
See Also
参照
Receiving Drop Information
ドロップ情報を受け取る
func dropEntered(info: DropInfo)
Tells the delegate a validated drop has entered the modified view.
委任先に、ある有効なドロップがその修正されたビューに入れられたところだと伝えます。
Required. Default implementation provided.
必須。 提供される省略時の実装。
func dropExited(info: DropInfo)
Tells the delegate a validated drop operation has exited the modified view.
委任先に、ある有効なドロップ操作がその修正されたビューを出たところだと伝えます。
Required. Default implementation provided.
必須。 提供される省略時の実装。