Hi. I am facing the same issue and have filed a radar. Is there a temporary workaround until the issue is fixed in the backend?
Post
Replies
Boosts
Views
Activity
@radionoise were you able to resolve this? I am facing the same issue on Monterey
This has been fixed in 11.4
contentLayoutGuide is internally of type NSLayoutGuide.
So all you have to do is cast it to NSLayoutGuide
if let guide = titleTextField.window?.contentLayoutGuide as? NSLayoutGuide {
	 let topAnchor = guide.topAnchor
}