Re: ERROR:Messages without a matching method signature will be assumed to return 'id' and accept '...' as arguments
Re: ERROR:Messages without a matching method signature will be assumed to return 'id' and accept '...' as arguments
- Subject: Re: ERROR:Messages without a matching method signature will be assumed to return 'id' and accept '...' as arguments
- From: Andrew Farmer <email@hidden>
- Date: Thu, 19 Mar 2009 19:30:21 -0700
On 18 Mar 09, at 02:23, developers mac wrote:
I am getting the warning : ERROR:Messages without a matching method
signature will be assumed to return 'id' and accept '...' as
arguments while
building the following code. NSData *theResponseData =
[NSURLConnection
sendSynchronousRequest:theRequest returningResponse:&theResponse
error:&theError]; // End [self parsexmlFileData:theResponseData]; (I
am
getting that warning here) and the method: - (void) parsexmlFileData:
(NSData
*) responsedata { stories = [[NSMutableArray alloc] init]; rssParser =
[[NSXMLParser alloc] initWithData:responsedata]; [rssParser
setDelegate:self]; [rssParser setShouldProcessNamespaces:NO];
[rssParser
setShouldReportNamespacePrefixes:NO]; [rssParser
setShouldResolveExternalEntities:NO]; [rssParser parse]; } What am i
doing
wrong. can some one figure this out? Thanks in Advance!
Chances are you haven't declared the parsexmlFileData: method
correctly in your @interface.
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden