Package apple.uikit.protocol
Interface UIDragSession
-
- All Superinterfaces:
UIDragDropSession
public interface UIDragSession extends UIDragDropSession
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.ObjectlocalContext()Use `localContext` to attach additional information to this drag session, visible only inside the app that started the drag.voidsetLocalContext(java.lang.Object value)Use `localContext` to attach additional information to this drag session, visible only inside the app that started the drag.-
Methods inherited from interface apple.uikit.protocol.UIDragDropSession
allowsMoveOperation, canLoadObjectsOfClass, hasItemsConformingToTypeIdentifiers, isRestrictedToDraggingApplication, items, locationInView
-
-
-
-
Method Detail
-
localContext
java.lang.Object localContext()
Use `localContext` to attach additional information to this drag session, visible only inside the app that started the drag.
-
setLocalContext
void setLocalContext(java.lang.Object value)
Use `localContext` to attach additional information to this drag session, visible only inside the app that started the drag.
-
-