Re: Determining Class from Instance address

2008-03-21 Thread Jens Alfke
On 21 Mar '08, at 7:40 AM, Joseph Ayers wrote: Given a log messages like: 2008-03-21 09:06:35.464 Roboplasm[12210:10b] *** -[VideoController measureMethodChanged:]: unrecognized selector sent to instance 0x3dfbc0 How does one determine the sender and self Set a breakpoint at objc_ex

Re: Determining Class from Instance address

2008-03-21 Thread Jerry Krinock
On 2008 Mar, 21, at 7:40, Joseph Ayers wrote: How does one determine the sender and self In my code VideoController doesn't get sent measureMethodChanged... Does VideoController implement measureMethodChanged: ? (Note carefully the colon which is part of the name.) If not, then implem

Re: Determining Class from Instance address

2008-03-21 Thread Sherm Pendley
On Fri, Mar 21, 2008 at 10:40 AM, Joseph Ayers <[EMAIL PROTECTED]> wrote: > Given a log messages like: > 2008-03-21 09:06:35.464 Roboplasm[12210:10b] *** -[VideoController > measureMethodChanged:]: unrecognized selector sent to instance 0x3dfbc0 > > How does one determine the sender and self >