I have a problem when trying to send a request via get to a WebView to open it containing a page, when I pass the concatenated faces I get an error, I think it's for coding reasons this only happens when I pass parameters with special characters , could anyone help me with this? Follow the code I'm using.
NSString *titulo = [listDictionary objectForKey:@"titulo"];
NSString *imagem = [listDictionary objectForKey:@"imagem"];
NSString *descricao = [listDictionary objectForKey:@"descricao"];
NSString *getString = [NSString stringWithFormat:@"https://meudominio.com.br/web.php?titulo=%@&image=%@&conteudo=%@", titulo, imagem, descricao];
getString = [getString stringByAddingPercentEscapesUsingEncoding:NSASCIIStringEncoding];
NSURL *url = [NSURL URLWithString:getString];
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
[webview loadRequest:requestObj];