Is there an LLDB command that can cast a raw address into a usable Swift class?
For example:
(lldb) po 0x7df67c50 as MKPinAnnotationView
The easiest way, swift 4
expr unsafeBitCast(0x7df67c50, to: MKPinAnnotationView.self)