Method Signature Problem.

2009-06-12 Thread Joshua Garnham
I am getting the Error/Warning about a part of my code saying 'Messages Without A Matching Method Signature will be assumed to return 'id' and accept '…' as arguments.)' I do not understand why I am getting this error, so please help, below is a link to that part of code in the implementation

Re: Method Signature Problem.

2009-06-12 Thread Kyle Sluder
Read the error message. It's saying I couldn't find a method with this name. I'll still compile your code, but it better look like what I'm assuming it looks like, or else you're going to blow up at runtime. You need to declare the method somewhere, and that declaration must either be in every

Re: Method Signature Problem.

2009-06-12 Thread Bill Bumgarner
On Jun 11, 2009, at 10:03 AM, Joshua Garnham wrote: I am getting the Error/Warning about a part of my code saying 'Messages Without A Matching Method Signature will be assumed to return 'id' and accept '…' as arguments.)' I do not understand why I am getting this error, so please help, below