In my app I do an xmlparser but I have a problem during parser because in a tag I have a special letter "รจ" and it read it as "\U00e8"; and it close a tag of my xml...and I have an error in my parsing...
I set my path in utf-8 in this way
NSString *path = @"emaple.com";
NSError *error;
NSURL *url = [NSURL URLWithString:path];
NSString * dataString = [[NSString alloc] initWithContentsOfURL:url encoding:NSUTF8StringEncoding error:&error];
NSData *data = [dataString dataUsingEncoding:NSUTF8StringEncoding];
affayfeed = [[NSMutableArray alloc]init];
parser = [[NSXMLParser alloc] initWithData:data];
but I have the same problem...why?