Re: Unrecognized Selector Exception from IBAction's?

2015-09-03 Thread Dave
Hi, > It looks like the buttons may be hooked up to an object of the wrong class? > Your actions aren’t defined in NSConcreteHashTable. Check your connections. > > David The Action Handlers are defined in LTWDisclosureViewController and LTWDetailViewController as shown in the original post.

Re: Unrecognized Selector Exception from IBAction's?

2015-09-03 Thread Dave
Hi, > On 3 Sep 2015, at 14:00, Mike Abdullah wrote: > > Try running with zombies turned on. Almost certainly, the object your actions > are wired up to has been deallocated, and since replaced by the hash table. That fixed it thanks - it was the View Controller I forgot

Unrecognized Selector Exception from IBAction's?

2015-09-03 Thread Dave
Hi, This is a Mac Project. I’m getting an Unrecognized Selector Exceptions when clicking on a Button Control: 2015-09-03 12:46:04.464 LTWTest1[1970:896242] -[NSConcreteHashTable leftButtonAction:]: unrecognized selector sent to instance 0x601221c0 2015-09-03 12:46:04.464

Re: Unrecognized Selector Exception from IBAction's?

2015-09-03 Thread David Durkee
It looks like the buttons may be hooked up to an object of the wrong class? Your actions aren’t defined in NSConcreteHashTable. Check your connections. David > On Sep 3, 2015, at 7:09 AM, Dave wrote: > > Hi, > > This is a Mac Project. > > I’m getting an Unrecognized

Re: Unrecognized Selector Exception from IBAction's?

2015-09-03 Thread Mike Abdullah
Try running with zombies turned on. Almost certainly, the object your actions are wired up to has been deallocated, and since replaced by the hash table. > On 3 Sep 2015, at 13:09, Dave wrote: > > Hi, > > This is a Mac Project. > > I’m getting an Unrecognized