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

# wantsLowLatencyEventDispatch

A Boolean value that determines whether the UI update link requests dispatch of low-latency eligible events.

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

## Discussion

By default, the value of this property is <doc://com.apple.documentation/documentation/Swift/false>, which means dispatch for events that are eligible for low-latency is off.

Set the value to <doc://com.apple.documentation/documentation/Swift/true> to request dispatch of low-latency eligible events. Only pencil events are low-latency eligible, so this behavior is primarily useful for pencil-drawing or writing apps.

Low-latency eligible events dispatch in the middle of a UI update. This timing gives an app half the amount of time to handle them as standard events. Check the value of [`completionDeadlineTime`](/documentation/UIKit/UIUpdateInfo/completionDeadlineTime) for the precise completion deadline time.

> Important:
> If you opt in to this behavior, keep the complexity of the code you use to handle these events to a minimum. When an app requests low-latency event dispatch, but doesn’t optimize event-handling code, frames don’t submit for presentation in time. Dropped frames cause hitches and provide a suboptimal user experience. If you request dispatch of low-latency eligible events, make sure to profile your app thoroughly. For more information, read <doc://com.apple.documentation/documentation/Xcode/understanding-user-interface-responsiveness>.

---

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)