Hey guys I have an NSString that has an ó inside, so when I put it in a TextView insted of reading "ó" I reads "A³".
So this is what I did:
self._Direccion = [self._Direccion stringByReplacingOccurrencesOfString:@"ó" withString:@"ó"];
but it's not working, I don't know why...
Is working for this:
/* á*/ self._Direccion = [self._Direccion stringByReplacingOccurrencesOfString:@"á" withString:@"á"];
/* é */ self._Direccion = [self._Direccion stringByReplacingOccurrencesOfString:@"é" withString:@"é"];
/* í */ self._Direccion = [self._Direccion stringByReplacingOccurrencesOfString:@"Ã" withString:@"í"];
/* ú */ self._Direccion = [self._Direccion stringByReplacingOccurrencesOfString:@"ú" withString:@"ú"];
but is not working with the "ó" why´s that?
Best Regards Carlos Vargas