LLDB: What's the class of an object?

lldb, objective-c, xcode4

Solution

It seems `po [myObject class]` works. If anyone has a better solution please post it.

Problem

Is there a way to find out the class of an object in LLDB, while the object itself is represented by an `id`. Something like `isKindOfClass`, that returns what class it actually is and not just `id`.

Original source