NSXMLParser problem with “&”(Ampersand) character
My NSXMLParsing is not working because of "&" character.. my code s below .any help please ? NSString *myRequestString = [NSString stringWithFormat:@"http://abc.com/def/webservices/aa.php?family_id=%d",self.passFamilyId]; //NSLog(@"Requested Service = %@",myRequestString); NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:[NSURL URLWithString:myRequestString]]; [request setHTTPMethod: @"POST" ]; NSData *downloadedData = [ NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil]; NSString *str = [[NSString alloc] initWithData:downloadedData encoding