URL which opens in Firefox,Chrome browsers on desktop, doesn\'t open in WebView on iPhone. This URL is supposedly accessing a GET request. When creating the NSURL without perce
Sometimes URL encoded format already except for the é-character which should probably be encoded as %c3%a9. Desktop browser is quite liberal with invalid URLs, thats why it works in Safari etc. So if you have a NSString and you want to convert it into a proper URL encoding then use the below method of NSString class.
NSURL* url = [NSURL URLWithString:[strURL stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];