what\'s the correct way to call a method from the Xcode debugger command line ?
For example if I\'m inside the sort: method of my class A (using the debugger), how can I
To call an Objective-C method in the gdb console, you have to cast the return type (since gdb doesn't really know what the return value is): (gdb) call (void)[textField setStringValue: @"Bork"]
(gdb) call (void)[textField setStringValue: @"Bork"]