I'm looking to be able to have the debugger break when it reaches a particular string match. As an example, I might have something like this:
Foo myObj = [self gimmeObj];
myObj might have a property called name. I want the debugger to stop on the assignment when
[myObj.name isEqualToString:@"Bar"];
How can I set my conditional breakpoint in Xcode to do that?