views:

10

answers:

1

Why I get "implicit declaration of function 'PerformXMLXPathQuery'" warning?

NSString *response = [request responseString];  
NSString* xPathQuery = [NSString stringWithFormat:@"//ExtendedData"];  
NSArray* myArray = PerformXMLXPathQuery([response dataUsingEncoding:NSUTF8StringEncoding ],xPathQuery);
+1  A: 

The warning indicates that compiler cannot find a prototype declared for the PerformXMLXPathQuery function. Check if you have imported the header file where your function was declared.

Vladimir
My appli worked without this declaration, it was because It not alerted my self
Christophe Debove

related questions