<!--
{
  "availability" : [
    "iOS: 27.0.0 -",
    "iPadOS: 27.0.0 -",
    "macCatalyst: 27.0.0 -",
    "visionOS: 27.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "UIKit",
  "identifier" : "/documentation/UIKit/UIDragInteraction/allowsPointerDragBeforeLiftDelay",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Property",
  "symbol" : {
    "kind" : "Instance Property",
    "modules" : [
      "UIKit"
    ],
    "preciseIdentifier" : "c:objc(cs)UIDragInteraction(py)allowsPointerDragBeforeLiftDelay"
  },
  "title" : "allowsPointerDragBeforeLiftDelay"
}
-->

# allowsPointerDragBeforeLiftDelay

A Boolean value that controls whether pointer-initiated drags begin before the lift delay elapses.

```
var allowsPointerDragBeforeLiftDelay: Bool { get set }
```

## Discussion

When this property is <doc://com.apple.documentation/documentation/Swift/true>, a pointer-initiated drag begins as soon as the pointer crosses the minimum movement threshold, regardless of whether the lift delay has elapsed.

When this property is <doc://com.apple.documentation/documentation/Swift/false>, a pointer-initiated drag waits for the lift delay to elapse before checking whether the pointer has crossed the minimum movement threshold. This matches touch-based drag initiation behavior.

Set this property to <doc://com.apple.documentation/documentation/Swift/false> in gesture-rich views (such as a canvas) where people also interact frequently with secondary gestures in the same view. This ensures consistent gesture disambiguation regardless of input device.

The default value is <doc://com.apple.documentation/documentation/Swift/true> in iOS and <doc://com.apple.documentation/documentation/Swift/false> in macOS.

For touch-based gesture timing, use [`liftBehavior`](/documentation/UIKit/UIDragInteraction/liftBehavior-swift.property).

---

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)