views:

44

answers:

1

Can someone help me figure out this weird issue?

None of my button actions are getting called.

http://drop.io/cpyexk7

+2  A: 

Some common problems with these symptoms:

  • You didn't set the class of your NIB properly. Make sure it's an instance of your view controller subclass, not UIViewController.
  • You didn't create the appropriate IBAction outlets or connect them. Double-check that all the connections are made properly.

Without in-question code or pictures, I can't be more specific.

Tim