Re: help loading file
Re: help loading file
- Subject: Re: help loading file
- From: Anish Kumar <email@hidden>
- Date: Fri, 04 Mar 2005 18:50:55 +0530
Hi
I think the problem is in this part of the code...
[messaggioInvito setString:[[temp messaggioInvito] string]];
The correct code is....
[messaggioInvito setString:[[self messaggioInvito] string]];
because the method "messaggioInvito" is declared in the file in which you are calling it, so you have to use "self".
The error "selector not recognized" comes only when you try to call a method that doesn't exists or that doesn't belong to the object for which you are passing.
Hope this helps.
regards,
Anish
Software Engineer
http://www.qubyx.com/
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden