There is an error in my application that appears with the following (partial) stacktrace:
2011-11-25 01:55:59.760 Events2[6650:403] -[Event boolValue]: unrecognized selector sent to instance 0x7fb903928670
To debug this, I decided to add a symbolic breakpoint in the [Event boolValue] argument that when this selector is sent, the debugger will stop.
However, nothing happens. After setting a breakpoint, the application simply drives and throws the same exception without stopping.
I defined a breakpoint as follows:

I am using LLDB debugger with Xcode 4.2
source share