I am trying to build an RSS reader for the Tom\'s Hardware website.
I have an error when I try to load an URL into an UIWebview from an RSS link.
Here\'is my
Thanks guy, that'it, I have split the URL like this:
NSArray *split = [url componentsSeparatedByString:@"#"];
NSURL *requestUrl = [NSURL URLWithString:[[split objectAtIndex:0] stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
and now it work , thanks for your help !