<!--
{
  "availability" : [
    "iOS: 18.0.0 -",
    "iPadOS: 18.0.0 -",
    "macCatalyst: 18.0.0 -",
    "macOS: 15.0.0 -",
    "visionOS: 2.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "SwiftUI",
  "identifier" : "/documentation/SwiftUI/View/accessibilityDropPoint(_:description:isEnabled:)",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "SwiftUI"
    ],
    "preciseIdentifier" : "s:7SwiftUI4ViewPAAE22accessibilityDropPoint_11description9isEnabledAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA04UnitF0V_10Foundation23LocalizedStringResourceVSbtF::OverloadGroup"
  },
  "title" : "accessibilityDropPoint(_:description:isEnabled:)"
}
-->

# accessibilityDropPoint(_:description:isEnabled:)

The point an assistive technology should use to end a drag interaction.

```
@export(implementation) nonisolated func accessibilityDropPoint(_ point: UnitPoint, description: LocalizedStringResource, isEnabled: Bool) -> ModifiedContent<Self, AccessibilityAttachmentModifier>
```

## Parameters

`point`

The point the assistive technology will perform a drop
interaction.

`description`

The description of the drop interaction.

`isEnabled`

If true the accessibility drop point is applied;
otherwise the accessibility drop point is unchanged.

## Discussion

Use this modifier when you need to provide a description to users
when prompted end a drag interaction.

```
struct FolderView: View {
    var folderName: String

    var body: some View {
        FolderIcon(folderName: folderName)
            .accessibilityDropPoint(
                .center, description: Text("Move to \(folderName)"))
    }
}
```

By default, if an accessible view or its subtree has drag and/or drop
interactions, they will be automatically exposed by assistive
technologies. However, if there is more than one such interaction, each
drag or drop should have a description to disambiguate it and give a
good user experience.

> Note: An accessibility element can have multiple points
> for a drop, provided they have different descriptions.

---

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)