Given the infamous < NSLayoutConstraint:0x1c809d970 UIView:0x11fe288b0.height == 16 (active)> & co from the autolayout engine
what's the brave new swiftly world way to print an object of UIView class by a hex pointer value?
(lldb) p *((UIView*)0x11fe288b0)
error: :3:12: error: expected ',' separator *((UIView*)0x11fe288b0) ^ ,
(lldb) po *((UIView*)0x11fe288b0)
error: :3:12: error: expected ',' separator *((UIView*)0x11fe288b0) ^ ,
(lldb) expr *((UIView*)0x11fe288b0)
error: :3:12: error: expected ',' separator *((UIView*)0x11fe288b0) ^ ,
This is in xcode 10.3 and 11 beta 3
UPD:
(lldb) p *((UIView*)0x11fe288b0)
worked at first in xcode 11 beta 5, now it ceased to work: this might have been fixed in beta 5 but possibly that fix got clobbered when I went back to xcode 10.3 that "installed additional components"
UPD2: this seems to be a duplicate of Xcode debugger (lldb) get object description from memory address