After viewing the WWDC2013 LLDB Debug session, I want to add a custom type formatter for one my NSManagedObject subclasses. You can do this by typing in the debugger
type summary -add MyClass --summary-string "${var._name}"
This works but only on variables, not on methods, hence properties. I've also tried using a python script via valobj.GetChildMemberWithName without success.
How can I display a property on an NSManagedObject subclass on LLDB ?
More Info: http://lldb.llvm.org/varformats.html