<!--
{
  "availability" : [
    "iOS: 11.0.0 -",
    "iPadOS: 11.0.0 -",
    "macCatalyst: 13.1.0 -",
    "visionOS: 1.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "UIKit",
  "identifier" : "/documentation/UIKit/UIDragInteractionDelegate/dragInteraction(_:itemsForAddingTo:withTouchAt:)",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "UIKit"
    ],
    "preciseIdentifier" : "c:objc(pl)UIDragInteractionDelegate(im)dragInteraction:itemsForAddingToSession:withTouchAtPoint:"
  },
  "title" : "dragInteraction(_:itemsForAddingTo:withTouchAt:)"
}
-->

# dragInteraction(_:itemsForAddingTo:withTouchAt:)

Asks the delegate for the drag items to add to an in-progress drag session, in response to a user gesture to add the items.

```
optional func dragInteraction(_ interaction: UIDragInteraction, itemsForAddingTo session: any UIDragSession, withTouchAt point: CGPoint) -> [UIDragItem]
```

## Parameters

`interaction`

The interaction that called this method.

`session`

The current drag session.

`point`

The location of the user’s touch in the interaction’s view. The touch point is in the view’s coordinate system.

## Return Value

An array of drag items to add to the drag session, or an empty array if there are no items to add to the session.

## Discussion

Not implementing this method is the same as always returning an empty array.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)