+1  A: 

UIViewController doesn't respond to doClick: which is what you are seeing here.

In the nib file for your view, have you set the "File's Owner" to the class that you inherit from UIViewController and contains the doClick: method?

No one in particular
Thanks but yes it does have the files owner set to the class inheriting from UIViewController and the .m file does have the doClick method and the .h file has the doClick interface defined. That's what's killing me everything is wired up and should be working I've checked and double checked.
zonathen
An they are marked as IBOutlet and wired to the buttons from the file owner in IB...
zonathen