until previous version of the Xcode, I can see the backtrace of view by edit scheme -> Diagnostics -> Logging -> check Malloc Stack and select All Allocation and Free History` but the option just gone in Xcode 16.
How can I turn on Stack logging on Xcode 16
Yes, this was useful for debugging layout constraints, but their history is no longer shown automatically now.
The only workaround I've found is to get the constraint's address while in the view debugger, resume then go into the memory debugger and look up its address.
This works, but is several more steps now.