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: Chris Espinosa <email@hidden>
- Date: Wed, 18 Mar 2009 07:34:01 -0700
On Mar 18, 2009, at 2:24 AM, 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?
Have you declared parsexmlFileData in a header file and #imported it from the source file you are calling it from?
Chris
|
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden