Please also see https://developer.apple.com/forums/thread/791814
We worked around it like this
private class ContextMenuContainerView: UIView {
override func didMoveToWindow() {
super.didMoveToWindow()
if #available(iOS 26.0, *) {
// Make our context menu accessoryView user interactive
self.superview?.isUserInteractionEnabled = true
}
}
}
Topic:
UI Frameworks
SubTopic:
UIKit
Tags: