Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -941,7 +941,7 @@ open class NSHostingView<Content>: NSView, XcodeViewDebugDataProvider where Cont
// TODO: handle screen change
}

@_spi(ForOpenSwiftUIOnly)
@_implementationOnly
#if OPENSWIFTUI_SWIFTUI_RENDERER
@objc(swiftui_addRenderedSubview:positioned:relativeTo:)
#endif
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ open class _UIHostingView<Content>: UIView, XcodeViewDebugDataProvider where Con
base.layoutSubviews()
}

@_spi(_)
@_implementationOnly
override dynamic open func _geometryChanged(
_ geometry: UnsafeRawPointer,
forAncestor ancestor: UIView?
Expand Down Expand Up @@ -465,7 +465,7 @@ open class _UIHostingView<Content>: UIView, XcodeViewDebugDataProvider where Con
}

// Audited for 6.5.4
@_spi(_)
@_implementationOnly
override dynamic open func _hitTest(with context: _UIHitTestContext?) -> (UIResponder & _UIGestureRecognizerContainer)? {
defer { currentEvent = nil }
guard GestureContainerFeature.isEnabled else { return nil }
Expand Down Expand Up @@ -525,7 +525,7 @@ open class _UIHostingView<Content>: UIView, XcodeViewDebugDataProvider where Con
}

// Audited for 6.5.4
@_spi(_)
@_implementationOnly
override dynamic open var _childContainers: [any _UIGestureRecognizerContainer] {
guard GestureContainerFeature.isEnabled else { return super._childContainers }
return (responderNode as? ViewResponder)?.childGestureContainers ?? []
Expand Down Expand Up @@ -621,7 +621,7 @@ open class _UIHostingView<Content>: UIView, XcodeViewDebugDataProvider where Con
}
}

@_spi(ForOpenSwiftUIOnly)
@_implementationOnly
#if OPENSWIFTUI_SWIFTUI_RENDERER
@objc(swiftui_insertRenderedSubview:atIndex:)
#endif
Expand Down
Loading